diff --git a/ChangeLog b/ChangeLog index ec7276355c..83d766014c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -49,6 +49,7 @@ phpMyAdmin - ChangeLog + [interface] 'Function based search' for GIS data + Support Drizzle database - bug #3356456 [interface] Interface problems for queries having LIMIT clauses ++ [interface] Remove DefaultPropDisplay feature 3.4.7.0 (not yet released) - bug #3418610 [interface] Links in navigation when $cfg['MainPageIconic'] = false diff --git a/Documentation.html b/Documentation.html index 1c47508839..83aecef91d 100644 --- a/Documentation.html +++ b/Documentation.html @@ -2003,18 +2003,6 @@ $cfg['TrustedProxies'] = otherwise. -
- $cfg['DefaultPropDisplay'] - string or integer
-
When editing/creating new columns in a table all fields normally get - lined up one field a line. (default: 'horizontal'). If you set this to - 'vertical' you can have each field lined up vertically beneath each - other. You can save up a lot of place on the horizontal direction and - no longer have to scroll. If you set this to integer, editing of fewer - columns will appear in 'vertical' mode, while editing of more columns - still in 'horizontal' mode. This way you can still effectively edit - large number of columns, while having full view on few of them.
-
$cfg['ShowBrowseComments'] boolean
$cfg['ShowPropertyComments'] boolean
diff --git a/libraries/config.default.php b/libraries/config.default.php index ed3ea8b335..1d54bdb2ee 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -2300,15 +2300,6 @@ $cfg['DefaultDisplay'] = 'horizontal'; */ $cfg['RememberSorting'] = true; -/** - * default display direction for altering/creating columns (tbl_properties) - * (horizontal|vertical|) - * number indicates maximum number for which vertical model is used - * - * @global integer $cfg['DefaultPropDisplay'] - */ -$cfg['DefaultPropDisplay'] = 3; - /** * table-header rotation via faking or CSS? (css|fake|auto) * NOTE: CSS only works in IE browsers! diff --git a/libraries/config.values.php b/libraries/config.values.php index f4a7a499a7..0e7cd93fb7 100644 --- a/libraries/config.values.php +++ b/libraries/config.values.php @@ -150,7 +150,6 @@ $cfg_db['_overrides']['Servers/1/extension'] = extension_loaded('mysqli') $cfg_db['_validators'] = array( 'CharTextareaCols' => 'validate_positive_number', 'CharTextareaRows' => 'validate_positive_number', - 'DefaultPropDisplay' => array(array('validate_by_regex', '/^(?:horizontal|vertical|\d+)$/')), 'ExecTimeLimit' => 'validate_non_negative_number', 'Export/sql_max_query_size' => 'validate_positive_number', 'ForeignKeyMaxLimit' => 'validate_positive_number', diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php index 3c5555864f..d938197c2d 100644 --- a/libraries/config/messages.inc.php +++ b/libraries/config/messages.inc.php @@ -43,8 +43,6 @@ $strConfigConfirm_desc = __('Whether a warning ("Are your really sure...&qu $strConfigConfirm_name = __('Confirm DROP queries'); $strConfigDBG_sql_name = __('Debug SQL'); $strConfigDefaultDisplay_name = __('Default display direction'); -$strConfigDefaultPropDisplay_desc = __('[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates maximum number for which vertical model is used'); -$strConfigDefaultPropDisplay_name = __('Display direction for altering/creating columns'); $strConfigDefaultTabDatabase_desc = __('Tab that is displayed when entering a database'); $strConfigDefaultTabDatabase_name = __('Default database tab'); $strConfigDefaultTabServer_desc = __('Tab that is displayed when entering a server'); diff --git a/libraries/config/setup.forms.php b/libraries/config/setup.forms.php index 8ab287496b..6160456c5d 100644 --- a/libraries/config/setup.forms.php +++ b/libraries/config/setup.forms.php @@ -219,8 +219,7 @@ $forms['Main_frame']['Edit'] = array( 'LongtextDoubleTextarea', 'InsertRows', 'ForeignKeyDropdownOrder', - 'ForeignKeyMaxLimit', - 'DefaultPropDisplay'); + 'ForeignKeyMaxLimit'); $forms['Main_frame']['Tabs'] = array( 'LightTabs', 'PropertiesIconic', diff --git a/libraries/config/user_preferences.forms.php b/libraries/config/user_preferences.forms.php index 5505931549..2b0d5e2784 100644 --- a/libraries/config/user_preferences.forms.php +++ b/libraries/config/user_preferences.forms.php @@ -122,8 +122,7 @@ $forms['Main_frame']['Edit'] = array( 'ShowFieldTypesInDataEditView', 'InsertRows', 'ForeignKeyDropdownOrder', - 'ForeignKeyMaxLimit', - 'DefaultPropDisplay'); + 'ForeignKeyMaxLimit'); $forms['Main_frame']['Tabs'] = array( 'LightTabs', 'DefaultTabServer', diff --git a/libraries/tbl_properties.inc.php b/libraries/tbl_properties.inc.php index e5342d383a..c34bd1de6c 100644 --- a/libraries/tbl_properties.inc.php +++ b/libraries/tbl_properties.inc.php @@ -34,21 +34,7 @@ if (PMA_DRIZZLE) { include_once './libraries/data_mysql.inc.php'; } -if (is_int($cfg['DefaultPropDisplay'])) { - if ($num_fields <= $cfg['DefaultPropDisplay']) { - $display_type = 'vertical'; - } else { - $display_type = 'horizontal'; - } -} else { - $display_type = $cfg['DefaultPropDisplay']; -} - -if ('horizontal' == $display_type) { - $length_values_input_size = 8; -} else { - $length_values_input_size = 30; -} +$length_values_input_size = 8; $_form_params = array( 'db' => $db, @@ -123,7 +109,7 @@ if (!$is_backup) { $header_cells[] = __('Index'); } -$header_cells[] = '' . ($display_type == 'horizontal' ? 'A_I' : 'AUTO_INCREMENT') . ''; +$header_cells[] = 'A_I'; require_once './libraries/transformations.lib.php'; $cfgRelation = PMA_getRelationsParam(); @@ -279,7 +265,7 @@ for ($i = 0; $i < $num_fields; $i++) { $content_cells[$i][$ci] = ''; $ci++; @@ -562,7 +548,7 @@ for ($i = 0; $i < $num_fields; $i++) { @@ -602,48 +588,27 @@ if (is_array($content_cells) && is_array($header_cells)) { echo ''; echo ''; - if ($display_type == 'horizontal') { ?> - + - + - '; - $odd_row = ! $odd_row; + $odd_row = true; + foreach ($content_cells as $content_row) { + echo ''; + $odd_row = ! $odd_row; - if (is_array($content_row)) { - foreach ($content_row as $content_row_val) { - ?> + if (is_array($content_row)) { + foreach ($content_row as $content_row_val) { + ?> - '; - } - } else { - $i = 0; - $odd_row = true; - foreach ($header_cells as $header_val) { - echo ''; - $odd_row = ! $odd_row; - ?> - - - - '; - $i++; } + echo ''; } ?>
' . __('Structure') . PMA_showMySQLDocu('SQL-Syntax', 'CREATE_TABLE') . '
diff --git a/po/af.po b/po/af.po index e047104743..6fad6f8273 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" @@ -63,7 +63,7 @@ msgstr "Soek" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -127,7 +127,7 @@ msgid "Database comment: " msgstr "Tabel kommentaar" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Tabel kommentaar" @@ -137,7 +137,7 @@ msgstr "Tabel kommentaar" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -155,7 +155,7 @@ msgstr "Kolom name" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -167,7 +167,7 @@ msgstr "Tipe" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -178,7 +178,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Verstekwaarde (default)" @@ -192,13 +192,13 @@ msgid "Links to" msgstr "Skakels na" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Kommentaar" @@ -317,14 +317,14 @@ msgstr "Slegs Data" msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -339,8 +339,8 @@ msgstr "" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -366,7 +366,7 @@ msgid "Edit or export relational schema" msgstr "Vertoon PDF skema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -691,7 +691,7 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -757,7 +757,7 @@ msgstr "" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -837,12 +837,12 @@ msgstr "Kontroleer tabel" msgid "Database Log" msgstr "Databasis" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1168,7 +1168,7 @@ msgstr "Geen Regte" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1176,7 +1176,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Verander" @@ -1407,7 +1407,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1628,7 +1628,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1678,7 +1678,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1828,7 +1828,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2399,7 +2399,7 @@ msgstr "Geen indeks gedefinieer!" msgid "Indexes" msgstr "Indekse" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2436,7 +2436,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2732,19 +2732,19 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 #, fuzzy msgid "Tables" msgstr "Tabel" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2820,7 +2820,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2892,7 +2892,7 @@ msgstr "MySQL het gepraat: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Verduidelik SQL" @@ -2904,11 +2904,11 @@ msgstr "Ignoreer SQL Verduideliking" msgid "Without PHP Code" msgstr "Sonder PHP Kode" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Skep PHP Kode" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "" @@ -2917,7 +2917,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Ignoreer SQL Validasie" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Valideer SQL" @@ -3029,20 +3029,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktuur" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3252,7 +3252,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3401,200 +3401,190 @@ msgid "Default display direction" msgstr "Databasis statistieke" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Tabel instandhouding" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Vertoon Funksies" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Stoor as leer (file)" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Karakterstel van die leer:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formaat" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Velde omring met" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Velde ontsnap (escaped) deur" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Lyne beeindig deur" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Lyne beeindig deur" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3602,397 +3592,397 @@ msgstr "" msgid "Dump table" msgstr "%s tabel(le)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 #, fuzzy msgid "Relations" msgstr "Operasies" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "Export" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Omring tabel en veldname met backquotes" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 #, fuzzy msgid "Use delayed inserts" msgstr "Uitgebreide toevoegings" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Uitgebreide toevoegings" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Export" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV data" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "General" msgstr "Voortgebring deur" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 #, fuzzy msgid "LaTeX" msgstr "Etiket" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Databasis statistieke" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentasie" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Bladsy nommer:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentasie" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL-stelling" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL-stelling" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL-stelling" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "Skip Validate SQL" msgid "SQL Validator" msgstr "Ignoreer SQL Validasie" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4000,284 +3990,284 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Tabel" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "Voeg 'n nuwe veld by" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Vervang tabel data met leer (file)" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Column names" msgid "Column names in first row" msgstr "Kolom name" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Analiseer tabel" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4285,443 +4275,443 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Verander tabel sorteer volgens" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Hernoem tabel na" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Geen tabelle" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Geen databasisse" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4730,342 +4720,342 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Databasis" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analiseer tabel" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Herstel tabel" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Kolom Kommentaar word vertoon" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Stellings" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "Automatically create versions" msgstr "Bediener weergawe" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Databasis statistieke" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "Wys tabelle" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Wys ruitgebied" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Ry Statistiek" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5073,28 +5063,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5104,91 +5094,91 @@ msgstr "" msgid "Password" msgstr "Wagwoord" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Gebruiker Naam:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Verstekwaarde (default)" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5196,56 +5186,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5253,13 +5243,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5279,48 +5269,48 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy msgid "Database export options" msgstr "Databasis statistieke" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV vir M$ Excel data" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5492,9 +5482,8 @@ msgstr "Skep 'n nuwe bladsy" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Naam" @@ -5862,7 +5851,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "" @@ -6735,7 +6724,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7423,7 +7412,7 @@ msgstr "" msgid "Direction" msgstr "Skep" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Lengte/Waardes*" @@ -7704,7 +7693,7 @@ msgstr "Tabel kommentaar" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Kenmerke" @@ -8011,7 +8000,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8029,30 +8018,30 @@ msgstr "" "a single quote (\"'\") amongst those values, backslashes it (for example '\\" "\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -8065,63 +8054,63 @@ msgstr "" "a single quote (\"'\") amongst those values, backslashes it (for example '\\" "\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Geen" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primere" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Volteks" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Voeg 'n nuwe veld by" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Jy moet ten minste een Kolom kies om te vertoon" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Voeg 'n nuwe gebruiker by" diff --git a/po/ar.po b/po/ar.po index 22a56cfd78..040ae0f6f6 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-24 21:48+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" @@ -66,7 +66,7 @@ msgstr "بحث" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "ملاحظة قاعدة البيانات: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "تعليقات الجدول" @@ -140,7 +140,7 @@ msgstr "تعليقات الجدول" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "عمود" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "نوع" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "خالي" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "إفتراضي" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "مرتبط بـ" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "تعليقات" @@ -313,14 +313,14 @@ msgstr "بيانات فقط" msgid "CREATE DATABASE before copying" msgstr "إنشاء قاعدة البيانات قبل عملية النسخ" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "أضف %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" @@ -335,8 +335,8 @@ msgstr "التبديل إلى قاعدة البيانات المنسوخة" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "بناء الارتباطات" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -677,7 +677,7 @@ msgid "Check tables having overhead" msgstr "تحقق من الجداول التي تحمل عبء زائد" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -739,7 +739,7 @@ msgstr "قاموس البيانات" msgid "Tracked tables" msgstr "الجداول المتعقبة" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -814,12 +814,12 @@ msgstr "تتبع الجدول" msgid "Database Log" msgstr "سجل قاعدة البيانات" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "قيم للعمود \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "أدخل كل قيمة بحقل منفصل" @@ -1140,7 +1140,7 @@ msgstr "قيد إعادة قراءة الصلاحيات." msgid "Removing Selected Users" msgstr "حذف المستخدمين المحددين" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "أغلاق" @@ -1148,7 +1148,7 @@ msgstr "أغلاق" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "تعديل" @@ -1370,7 +1370,7 @@ msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1580,7 +1580,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1623,7 +1623,7 @@ msgstr "المتغيرات المستعملة" msgid "Test" msgstr "إختبار" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1750,7 +1750,7 @@ msgstr "وقت التنفيذ الأقصى" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2258,7 +2258,7 @@ msgstr "لم يتم تعريف الفهرس!" msgid "Indexes" msgstr "فهارس" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2294,7 +2294,7 @@ msgid "" "removed." msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2605,18 +2605,18 @@ msgid "shared" msgstr "مشترك" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "جداول" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2690,7 +2690,7 @@ msgstr "فهرس خادم غير صحيح: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "إسم المضيف غير صحيح للخادم %1$s." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2762,7 +2762,7 @@ msgstr "MySQL قال: " msgid "Failed to connect to SQL validator!" msgstr "فشل الإتصال بمدقق SQL!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "شرح SQL" @@ -2774,11 +2774,11 @@ msgstr "تخطي شرح SQL" msgid "Without PHP Code" msgstr "بدون كود PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "أنشئ كود PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "تحديث" @@ -2787,7 +2787,7 @@ msgstr "تحديث" msgid "Skip Validate SQL" msgstr "تخطي تدقيق SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "التدقيق في استعلام SQL" @@ -2891,20 +2891,20 @@ msgid "Click to toggle" msgstr "إضغط للإختيار" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "بناء" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3103,7 +3103,7 @@ msgid "Set value: %s" msgstr "تعيين القيمة: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "إستعادة القيمة الإفتراضية" @@ -3257,564 +3257,552 @@ msgid "Default display direction" msgstr "إتجاه العرض الإفتراضي" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]أفقي[/kbd] , [kbd]رأسي[/kbd] أو عدد يشير إلى أكبر عدد من الأعمدة " -"يستعمله النموذج" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "عرض الإتجاه لـ تعديل/إنشاء الأعمدة" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "التبويب الذي يعرض عند الدخول إلى قاعدة البيانات" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "تبويب قاعدة البيانات الإفتراضي" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "التبويب الذي يعرض عند الدخول إلى الخادم" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "تبويب الخادم الإفتراضي" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "التبويب الذي يعرض عند الدخول إلى الجدول" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "تبويب الجدول الإفتراضي" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "عرض البيانات الثنائية بالنظام الست عشري إفتراضياً" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "عرض البيانات الثنائية بالنظام الست عشري" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "إظهار قواعد البيانات كقائمة بدلاً من القائمة المنسدلة" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "إظهار قواعد البيانات كقائمة" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "إظهار الخوادم كقائمة بدلاً من القائمة المنسدلة" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "إظهار الخوادم كقائمة" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "تعطيل عمليات الصيانة , مثل تحسين وإصلاح جداول قاعدة البيانات." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "تعطيل صيانة الجداول المتعددة " -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "تعديل إستعلام SQL في نافذة منبثقة" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "تعديل في نافذة" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "عرض الأخطاء" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "جمع الأخطاء" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "عرض الأيقونات لرسائل التحذير, الخطأ والمعلومات" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "أيقونة أخطاء" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "ضع الوقت المحدد لعمل البرنامج ([kbd]0[/kbd]: لانهائي)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "وقت التنفيذ الأقصى" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "حفظ كملف" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "مجموعة الأحرف للملف" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "صيغة" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "الضغط" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "ضع أسماء الحقول في السطر الأول" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "حقل مضمن بـ" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "حقل متجاهل بـ" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "استبدل NULL بـ" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "حذف CRLF من الأعمدة" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "خطوط تنتهي بـ" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "أسطر تنتهي بـ" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "إصدارة إكسل" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "إسم قالب قاعدة البيانات" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "إسم قالب الخادم" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "إسم قالب الجدول" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "إفراغ الجدول" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "أضف عنواناً للجدول" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "عنوان الجدول" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "عنوان جدول تابع" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Label key" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "نوع MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "العلاقات" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "نوع التصدير" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "حفظ في الخادم" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "خزن على الملفات الموجودة" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "تذكر إسم قالب الملف" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "حماية أسماء الجداول و الحقول ب \"`\" " -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "وضع توافق SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "خيارات CREATE TABLE :" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "تواريخ الإنشاء/التحديث/التحقق" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "استخدم الإضافات المتأخرة" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "تعطيل التحقق من المفتاح الغريب" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "إستخدم النظام الست عشري لـ BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "إستخدم الإضافات المتجاهلة" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "بناء الجملة لإستخدامه عند إدخال البيانات" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "أقصى طول للإستعلام المنشئ" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "نوع التصدير" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "تضمين التصدير في العملية" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "وقت التصدير (بالتوقيت العالمي)" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "فرض الإتصال الآمن عند إستخدام phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "فرض إتصال SSL" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "قائمة منسدلة مرتبة بالمفتاح الغريب" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "سيتم إستخدام القائمة المنسدلة إذا وجد عدد أقل من العناصر" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "حد المفتاح الغريب" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "وضع الإستعراض" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "تخصيص وضع الإستعراض" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "تخصيص الخيارات الإفتراضية" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "سي إس في" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "مطور" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "إعدادات لمطوري phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "وضع التعديل" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "تخصيص وضع التعديل" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "إفتراضيات التصدير" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "تخصيص خيارات التصدير الإفتراضي" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "مميزات" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "عام" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "تعيين بعض الخيارات شائعة الإستخدام" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "إفتراضيات الإستيراد" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "تخصيص خيارات الإستيراد الإفتراضية" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "إستيراد / تصدير" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "حدد عناوين الإستيراد والتصدير و خيارات الضغط" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "خيارات عرض قواعد البيانات" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "إطار التصفح" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "تخصيص مظهر إطار التصفح" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "خوادم" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "خيارات عرض الخوادم" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "خيارات عرض الجداول" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "الإطار الرئيسي" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "مايكروسوفت أوفيس" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "مستند مفتوح" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "الإعدادات الرئيسية الأخرى" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "الإعدادات التي لاتناسب في أي مكان آخر" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "عناوين الصفحة" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "نافذة الاستعلام" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "تخصيص خيارات نافذة الإستعلام" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "الأمان" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" "فضلاً , تذكر أن phpMyAdmin هي واجة إستخدام فقط ولا يمكن أن تتجاوز حدود MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "الإعدادات الأساسية" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "المصادقة" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "خيارات المصادقة" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "إعداد الخادم" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "إعداد متقدم للخادم , لاتغير أي من هذه القيم حتى تعلم وظيفتها" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "أدخل معلومات إتصال الخادم" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "إعداد التخزين" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "تعقب التغيرات" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "تعقب التغيرات الحاصلة على قاعدة البيانات." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "تخصيص خيارات التصدير" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "تخصيص خيارات الإستيراد" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "تخصيص اطار التصفح" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "تخصيص الإطار الرئيسي" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "إستعلام SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "صندوق إستعلام SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "تخصيص الروابط الموجودة في صندوق إستعلام SQL" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "إعدادات إستعلامات SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "مدقق SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3822,43 +3810,43 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "بدء التشغيل" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "تخصيص صفحة بدء التشغيل" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "التبويبات" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "إختر الطريقة التي تعمل بها التبويبات" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "حقول نصية" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "تخصيص حقول الإدخال النصية" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "نص" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "تحذيرات" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "إلغاء عرض بعض التحذيرات في phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3866,15 +3854,15 @@ msgstr "" "تفعيل ضغط [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] لعمليات التصدير " "والإستيراد" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "مدخلات إضافية لـ iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3882,32 +3870,32 @@ msgstr "" "إذا كان مفعل , فإن phpMyAdmin سوف تستمر في تنفيذ الإستعلامات المتعددة حتى " "لو فشل بعضها" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "تجاهل أخطاء الجمل المتعددة" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "الإستيراد الجزئي: السماح بالمقاطعة" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "لاتحبط عندما يكون الخطأ في جمل الإدخال INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "استبدال بيانات الجدول بالملف" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3915,126 +3903,126 @@ msgstr "" "الهيئة الإفتراضي ; كن مدرك بأن هذه القائمة تعتمد على مكان (قاعدة البيانات " "والجدول)" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "هيئة الملفات المستوردة" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "إستعمل الجملة LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "ضع أسماء الصفوف في السطر الأول" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "لاتستورد صفوف فارغة" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "عملات الإستيراد ($5.00 إلى 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "النسبة المئوية للإستيراد كرقم عشري (12.00% إلى .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "عدد الإستعلامات التي يتخطاها من البداية" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "إستيراد جزئي: تخطي الإستعلامات" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "لاتستعمل AUTO_INCREMENT للقيم الصفرية" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "الحالة الأولية" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "كم عدد الصفوف التي يمكن إدخالها مرة واحدة" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "عدد الصفوف المدخلة" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "الهدف لإيقونة الوصول السريع" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "عرض الشعار في الإطار الأيسر" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "عرض الشعار" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "عرض إختيار الخادم في الجزء العلوي من الإطار الأيسر" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "عرض إختيار الخوادم" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "اقل عدد جداول تعرض في صندوق تصفية الجداول" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "فاصل شجرة قاعدة البيانات" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "عرض قواعد البيانات في شجرة" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "تعطيل هذا إذا كنت تريد رؤية قواعد البيانات كلٌ على حدا" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "إستخدم نسخة light" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "أقصى عمق لشجرة الجدول" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "فاصل شجرة الجدول" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "إعمل رابط للمكان الذي يشير اليه الشعار" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "رابط الشعار" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4042,65 +4030,65 @@ msgstr "" "فتح الصفحة المرتبطة في النافذة الرئيسية ([kbd]main[/kbd]) أو في نافذة جديدة " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "هدف رابط الشعار" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "توضيح الخادم تحت مؤشر الفأرة" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "تفعيل التوضيح (highlighting)" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "الجداول المستعملة مؤخراً" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "حد أحرف العمود" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "حذف كل الكوكيز عند الخروج" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "تعريف ما إذا كان سوف يتذكر تسجيل الدخول الأخير من تحقق الكوكيز أم لا" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "تذكر إسم المستخدم" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4108,438 +4096,438 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "تحديد كم المدة التي يبقى فيها الكوكيز" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "صلاحية دخول الكوكيز" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "مضاعفة حجم مربع النص لأعمدة LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "مربع نص أكبر لـ LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "إستخدم الإيقونات في الصفحة الرئيسية" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "المستخدمين لايمكنهم وضع قيمة أكبر" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "قواعد بيانات أكبر" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "جداول أكبر" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "تحذير mcrypt" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "حدود الذاكرة" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "هذه هي روابط التعديل والنسخ والحذف" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "ترتيب طبيعي" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "إستخدم الأيقونات او النصوص فقط , أو الإثنان" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "الترتيب الإفتراضي" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "الإتصالات الثابتة" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "منع تعديل الأعمدة من نوع BLOB و BINARY" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "حماية الأعمدة من نوع BINARY" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "عدد الإستعلامات التي حفظت" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "عرض التبوب عند فتح نافذة إستعلام جديد" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "نافذة إستعلام إفتراضية" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "إرتفاع نافذة الإستعلام (بالبكسل)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "إرتفاع نافذة الإستعلام" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "عرض نافذة الإستعلام (بالبكسل)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "إرتفاع نافذة الإستعلام" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "إختر أي وظيفة سوف تستعمل لتغيير الترميز" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "محرك إعادة الترميز" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "عند تصفح الجداول, تذكر ترتيب كل جدول" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "تذكر ترتيب الجداول" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "أكبر عدد للجداول المستعملة مؤخراً ; ضع 0 للتعطيل" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4548,337 +4536,337 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "اسم قاعدة البيانات" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "تحليل الجدول" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "إظهار تعليقات العمود" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "أوامر" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "إتجاه العرض الإفتراضي" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "أظهر تخطيط الجدول" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4886,28 +4874,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -4917,90 +4905,90 @@ msgstr "" msgid "Password" msgstr "كلمة السر" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "اسم المستخدم" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "إضافه/حذف عمود حقل" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "افتراضي" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5008,56 +4996,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5065,13 +5053,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "زيب" @@ -5091,49 +5079,49 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Database export options" msgid "Database export options" msgstr "خيارات تصدير قاعدة بيانات" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "بيانات CSV لبرنامج ميكروسوفت إكسل" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5306,9 +5294,8 @@ msgstr "أنشئ الجدول" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "الاسم" @@ -5687,7 +5674,7 @@ msgid "Hide" msgstr "أخفاء" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "تحويل المتصفح" @@ -6569,7 +6556,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "اسم الجدول" @@ -7276,7 +7263,7 @@ msgstr "" msgid "Direction" msgstr "الإنشاء" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "الطول/القيمة" @@ -7578,7 +7565,7 @@ msgstr "جدول المحتويات" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "الخواص" @@ -7884,7 +7871,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -7902,7 +7889,7 @@ msgstr "" "لليسار (\"\\\") أو علامة الاقتباس الفردية (\"'\") فيما بين تلك القيم، اجعلها " "كشرطة مائلة لليسار (مثلا '\\\\xyz' أو 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -7910,13 +7897,13 @@ msgstr "" "للقيم الافتراضية، الرجاء أدخل قيمة مفردة، دون علامات هروب أو تنصيص، باستخدام " "التنسيق: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "فهرست" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -7925,11 +7912,11 @@ msgstr "" "لعرض قائمة بخيارات التحويل المتوفرة وأنواع تحويلات MIME الخاصة بها، اضغط على " "%sخيارات التحويل%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "خيارات التحويل" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -7940,64 +7927,64 @@ msgstr "" ">إذا احتجت أن تضع شرطة مائلة (\"\\\") أو علامة تنصيص (\"'\") بين هذه القيم، " "اسبقها بشرطة مائلة )على سبيل المثال '\\\\xyz' أو 'a\\'b'(." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "لا شيء" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "كما هو معرف:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "أساسي" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "النص كاملا" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "ليس هناك وصف متوفر لهذا التحويل.
رجاء اسأل الناشر، ما يفعله %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "أضف إلى الملاحظات" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "عليك اختيار عمود واحد على الأقل للعرض" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new User" msgid "+ Add a value" @@ -12674,6 +12661,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]أفقي[/kbd] , [kbd]رأسي[/kbd] أو عدد يشير إلى أكبر عدد من الأعمدة " +#~ "يستعمله النموذج" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "عرض الإتجاه لـ تعديل/إنشاء الأعمدة" + #~ msgid "Create table on database %s" #~ msgstr "تكوين جدول جديد في قاعدة البيانات %s" diff --git a/po/az.po b/po/az.po index 764d28aa32..14c605b821 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" @@ -62,7 +62,7 @@ msgstr "Axtarış" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -126,7 +126,7 @@ msgid "Database comment: " msgstr "Baza qısa izahatı: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Cedvel haqqında qısa izahat" @@ -136,7 +136,7 @@ msgstr "Cedvel haqqında qısa izahat" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -154,7 +154,7 @@ msgstr "Sütun adları" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -166,7 +166,7 @@ msgstr "Tip" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -177,7 +177,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Başlanğıc deyeri" @@ -191,13 +191,13 @@ msgid "Links to" msgstr "Links to" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Qısa İzahatlar" @@ -316,14 +316,14 @@ msgstr "Sadece me'lumat" msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT deyeri elave et" @@ -339,8 +339,8 @@ msgstr "Kopyalanmış cedvele keç" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -367,7 +367,7 @@ msgid "Edit or export relational schema" msgstr "Relational schema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -693,7 +693,7 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -759,7 +759,7 @@ msgstr "Me'lumat lüğeti" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -839,12 +839,12 @@ msgstr "Cedveli yoxla" msgid "Database Log" msgstr "Me'lumat Bazası" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1185,7 +1185,7 @@ msgstr "Qlobal selahiyyetler" msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1193,7 +1193,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Deyişdir" @@ -1426,7 +1426,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1649,7 +1649,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1699,7 +1699,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1853,7 +1853,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2425,7 +2425,7 @@ msgstr "İndeks te'yin edilmedi!" msgid "Indexes" msgstr "Indeksler" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2462,7 +2462,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2761,18 +2761,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Cedveller" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2848,7 +2848,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2920,7 +2920,7 @@ msgstr "MySQL deyir: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL-i İzah Et" @@ -2932,11 +2932,11 @@ msgstr "SQL İzah Et-i Keç" msgid "Without PHP Code" msgstr "PHP Kodunu Gösterme" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "" @@ -2945,7 +2945,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "SQL İfadesini Yoxlama" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL Tesdiqle" @@ -3061,20 +3061,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Quruluş" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3287,7 +3287,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3437,136 +3437,126 @@ msgid "Default display direction" msgstr "Me'lumat bazası eksport variantları" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Cedvel temizliyi" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Bir sonrakı setre keç" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Xüsusiyyetleri Göster" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Fayl olaraq qeyd et" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Faylın Charset-i:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Sıxışdırma" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3575,71 +3565,71 @@ msgstr "Sıxışdırma" msgid "Put columns names in the first row" msgstr "Sahe adlarını birinci setre yerleşdir" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Saheler ehate edildiyi işare" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Sahelerin escape edildiyi işare" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "NULL-u bununla deyişdir" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Setir leğvedicisi (Lines terminated by)" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Setir leğvedicisi (Lines terminated by)" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel versiyası" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Fayl adı nomenklaturası" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Fayl adı nomenklaturası" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Fayl adı nomenklaturası" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3647,402 +3637,402 @@ msgstr "Fayl adı nomenklaturası" msgid "Dump table" msgstr "%s cedvel" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Cedvel başlığını daxil et" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Cedvel başlığı" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Cedvel başlığının davamı" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Etiket açarı" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-tipi" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Eksport şekli" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Mövcud fayl(lar)ın üzerine yaz" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Fayl adı nomenklaturası" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Cedvel ve sahe adlarını tek dırnaq arasına al" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Quruluş/Deyişdirilme/Yoxlama tarixleri" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 #, fuzzy msgid "Use delayed inserts" msgstr "Genişletilmiş girişli" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Genişletilmiş girişli" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Eksport şekli" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Eksport şekli" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV verilenleri" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "General" msgstr "Qurucu" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Faylları import et" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentasiya" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Sehife Nömresi:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Sorğu penceresi" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentasiya" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL sorğusu" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL sorğusu" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL sorğusu" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-tarixçesi" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4050,288 +4040,288 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Cedvel" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Use text field" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Sahe adlarını birinci setre yerleşdir" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT deyeri elave et" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Cedveli analiz et" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4339,451 +4329,451 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Resource limits" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Cedvel sırasına buna göre yeniden qur" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Sorğu penceresi" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Sorğu penceresi" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Sorğu penceresi" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Cedveli yeniden adlandır" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Elaqeler" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Cedvel yoxdur" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "Quraşdırılmış Serverler" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4792,344 +4782,344 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Me'lumat Bazası" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "Quraşdırılmış Serverler" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Cedveli analiz et" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Cedveli te'mir et" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Quraşdırılmış Serverler" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Sütun Qısa İzahatını Deyişdir" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Variantlar" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Avtomatik qurtarma rejimi" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "Cedvelleri göster" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Show grid" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Emrleri Tam Olaraq Göster" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Sıra Statistikası" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5137,28 +5127,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5168,91 +5158,91 @@ msgstr "" msgid "Password" msgstr "Parol" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "İstifadeçi Adı:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Başlanğıc deyeri" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5260,56 +5250,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5317,13 +5307,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5343,47 +5333,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS Excel verilenleri üçün CSV" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5555,9 +5545,8 @@ msgstr "Yeni Sehife qur" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Adı" @@ -5936,7 +5925,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" @@ -6824,7 +6813,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7526,7 +7515,7 @@ msgstr "" msgid "Direction" msgstr "Quruluş" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Uzunluq/Deyerler*" @@ -7813,7 +7802,7 @@ msgstr "İçindekiler Cedveli" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Xüsusiyyetler" @@ -8126,7 +8115,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8144,7 +8133,7 @@ msgstr "" "(\"'\") istifade etmek isteyirsinizse, onları ters-kesrle escape-leyin " "(meselen '\\\\xyz' ve ya 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8152,13 +8141,13 @@ msgstr "" "Başlanğıc deyer girerken, sadece deyeri girin, ters kesr escape-leme ya da " "dırnaqdan istifade etmeyin, bu formatı te'qib edin: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "İndeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8167,11 +8156,11 @@ msgstr "" "For a list of available transformation options and their MIME-type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Transformasiya variantları" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8183,36 +8172,36 @@ msgstr "" "quote (\"'\") amongst those values, backslashes it (for example '\\\\xyz' or " "'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Heç biri" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Birinci Dereceli" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Tam metn (Fulltext)" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8221,27 +8210,27 @@ msgstr "" "No Description is available for this transformation.
Please ask the " "author, what %s does." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Yeni sahe elave et" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Depolama Motorları" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Yeni İstifadeçi elave Et" diff --git a/po/be.po b/po/be.po index e5b776de58..03b1330323 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" @@ -65,7 +65,7 @@ msgstr "Пошук" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -129,7 +129,7 @@ msgid "Database comment: " msgstr "Камэнтар да базы дадзеных: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Камэнтар да табліцы" @@ -139,7 +139,7 @@ msgstr "Камэнтар да табліцы" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -157,7 +157,7 @@ msgstr "Назвы калёнак" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -169,7 +169,7 @@ msgstr "Тып" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -180,7 +180,7 @@ msgstr "Нуль" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Па змоўчаньні" @@ -194,13 +194,13 @@ msgid "Links to" msgstr "Зьвязаная з" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Камэнтары" @@ -317,14 +317,14 @@ msgstr "Толькі дадзеныя" msgid "CREATE DATABASE before copying" msgstr "выканаць CREATE DATABASE перад капіяваньнем" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Дадаць %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" @@ -339,8 +339,8 @@ msgstr "Перайсьці да скапіяванай базы дадзеных #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -366,7 +366,7 @@ msgid "Edit or export relational schema" msgstr "Рэляцыйная схема" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -695,7 +695,7 @@ msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -763,7 +763,7 @@ msgstr "Слоўнік дадзеных" msgid "Tracked tables" msgstr "Праверыць табліцу" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -845,12 +845,12 @@ msgstr "Праверыць табліцу" msgid "Database Log" msgstr "База дадзеных" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1205,7 +1205,7 @@ msgstr "Перазагрузіць прывілеі" msgid "Removing Selected Users" msgstr "Выдаліць выбраных карыстальнікаў" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1213,7 +1213,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Рэдагаваць" @@ -1458,7 +1458,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1682,7 +1682,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1732,7 +1732,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1890,7 +1890,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2471,7 +2471,7 @@ msgstr "Індэкс ня вызначаны!" msgid "Indexes" msgstr "Індэксы" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2509,7 +2509,7 @@ msgstr "" "Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь " "іх, магчыма, можна выдаліць." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2827,18 +2827,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Табліц" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2920,7 +2920,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2992,7 +2992,7 @@ msgstr "Адказ MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Тлумачыць SQL" @@ -3004,11 +3004,11 @@ msgstr "Не тлумачыць SQL" msgid "Without PHP Code" msgstr "Без PHP-коду" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Стварыць PHP-код" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Абнавіць" @@ -3017,7 +3017,7 @@ msgstr "Абнавіць" msgid "Skip Validate SQL" msgstr "Не правяраць SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Праверыць SQL" @@ -3134,20 +3134,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3359,7 +3359,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3509,139 +3509,129 @@ msgid "Default display direction" msgstr "Налады экспарту базы дадзеных" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Перайменаваць базу дадзеных у" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Перайменаваць базу дадзеных у" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Перайменаваць базу дадзеных у" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Абслугоўваньне табліцы" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Рэдагаваць наступны радок" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Паказваць магчымасьці" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Захаваць як файл" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Кадыроўка файла:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Фармат" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Сьціск" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3650,71 +3640,71 @@ msgstr "Сьціск" msgid "Put columns names in the first row" msgstr "Пазначыць назвы палёў у першым радку" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Палі ўзятыя ў" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Палі экрануюцца" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Замяняць NULL на" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Радкі падзеленыя" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Радкі падзеленыя" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Вэрсія Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3722,405 +3712,405 @@ msgstr "Шаблён назвы файла" msgid "Dump table" msgstr "%s табліц(ы)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Уключыць загаловак табліцы" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Загаловак табліцы" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Працягнуты загаловак табліцы" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Ключ меткі" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-тып" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Сувязі" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Тып экспарту" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Перазапісваць існуючы(я) файл(ы)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Зваротнае двукосьсе ў імёнах табліц і палёў" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Рэжым сумяшчальнасьці SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Стварэньне/Абнаўленьне/Праверка дат" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Выкарыстоўваць адкладзеныя ўстаўкі" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Адключыць праверку зьнешніх ключоў" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Шаснаццатковыя значэньні для поляў тыпу BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Выкарыстоўваць устаўкі ігнараваньняў" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Максымальная даўжыня створанага запыту" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Тып экспарту" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Экспартаваць за адну транзакцыю" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Тып экспарту" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "Export defaults" msgstr "Імпартаваць файлы" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 #, fuzzy msgid "Customize default export options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Згенэраваць" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Імпартаваць файлы" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Сэрвэры" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 #, fuzzy msgid "Servers display options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 #, fuzzy msgid "Tables display options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Тэкст Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Старонка:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 #, fuzzy msgid "Customize query window options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy msgid "Authentication" msgstr "Аўтэнтыфікацыя..." -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy msgid "Authentication settings" msgstr "Аўтэнтыфікацыя..." -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 #, fuzzy msgid "Customize import defaults" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL-запыт" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL-запыт" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL-запыт" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Гісторыя SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4128,72 +4118,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Стан" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Табліца" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Тэкст Texy!" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -4204,222 +4194,222 @@ msgstr "" "скончваецца час выкананьня. Гэта можа быць добрым спосабам імпартаваньня " "вялікіх файлаў, аднак, гэта можа перапыніць транзакцыі." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Фармат імпартаванага файла" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Выкарыстоўваць ключавое слова LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Пазначыць назвы палёў у першым радку" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Колькасьць (запытаў), якія трэба прапусьціць ад пачатку" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 #, fuzzy msgid "Number of inserted rows" msgstr "Колькасьць адсартаваных радкоў." -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "Колькасьць адкрытых табліц." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 #, fuzzy msgid "Database tree separator" msgstr "Шаблён назвы файла" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 #, fuzzy msgid "Use light version" msgstr "Вэрсія кліента MySQL" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Recently used tables" msgstr "Праверыць табліцу" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4427,461 +4417,461 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Maximum databases" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Абмежаваньні рэсурсаў" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Зьмяніць парадак табліцы" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Перайменаваць табліцу ў" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Патокаў узнаўленьня" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "Хатняя тэчка дадзеных" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 #, fuzzy msgid "Host authorization order" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 #, fuzzy msgid "Host authorization rules" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 #, fuzzy msgid "Authentication method to use" msgstr "Аўтэнтыфікацыя..." -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 #, fuzzy msgid "Authentication type" msgstr "Аўтэнтыфікацыя..." -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Падлучэньні" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Няма табліц" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Дэфрагмэнтаваць табліцу" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 #, fuzzy msgid "PHP extension to use" msgstr "Пашырэньне PHP" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "імя сэрвэра" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4890,347 +4880,347 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "імя базы дадзеных" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "ID сэрвэра" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Аналізаваць табліцу" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Рамантаваць табліцу" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Выбар сэрвэра" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Паказваць камэнтары калёнак" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Дэфрагмэнтаваць табліцу" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Выразы" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Рэжым аўтаматычнага ўзнаўленьня" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Паказаць адкрытыя табліцы" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Паказаць сетку" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Паказаць поўныя запыты" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Статыстыка радку" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5238,29 +5228,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 #, fuzzy msgid "Skip locked tables" msgstr "Паказаць адкрытыя табліцы" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5270,90 +5260,90 @@ msgstr "" msgid "Password" msgstr "Пароль" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Імя карыстальніка:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy msgid "Default title" msgstr "Перайменаваць базу дадзеных у" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5361,57 +5351,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 #, fuzzy msgid "Upload directory" msgstr "Хатняя тэчка дадзеных" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5419,13 +5409,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5449,49 +5439,49 @@ msgstr "Апаратная аўтэнтыфікацыя скончылася н msgid "Signon authentication" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV з выкарыстаньнем LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Спэцыфікацыя Open Document" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Іншы колер" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV для дадзеных MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Тэкст Open Document" @@ -5668,9 +5658,8 @@ msgstr "Стварыць табліцу" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Назва" @@ -6073,7 +6062,7 @@ msgid "Hide" msgstr "Схаваць" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" @@ -7022,7 +7011,7 @@ msgstr "Няправільная колькасьць палёў у CSV-дадз msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Імя табліцы" @@ -7734,7 +7723,7 @@ msgstr "" msgid "Direction" msgstr "Прамыя лініі сувязяў" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Даўжыня/Значэньні*" @@ -8037,7 +8026,7 @@ msgstr "Зьмест" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Атрыбуты" @@ -8353,7 +8342,7 @@ msgstr "Табліца — пустая!" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8371,7 +8360,7 @@ msgstr "" "зваротны слэш (\"\\\") або апостраф (\"'\") сярод гэтых значэньняў, пастаўце " "перад імі зваротны слэш (напрыклад, '\\\\xyz' або 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8379,13 +8368,13 @@ msgstr "" "Для значэньняў па змоўчаньні, калі ласка, увядзіце проста значэньне, без " "выкарыстаньня зваротных слэшаў і двукосься, выкарыстоўваючы фармат: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Індэкс" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8394,11 +8383,11 @@ msgstr "" "Для атрыманьня сьпісу даступных опцыяў трансфармацыі і пераўтварэньняў іхных " "MIME-тыпаў, націсьніце на %sапісаньні пераўтварэньняў%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Опцыі пераўтварэньня" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8410,36 +8399,36 @@ msgstr "" "або апостраф (\"'\") у гэтых значэньнях, устаўце зваротны слэш перад імі " "(напрыклад, '\\\\xyz' або 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Няма" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Як вызначана:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Першасны" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Поўнатэкстэкставае" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8448,28 +8437,28 @@ msgstr "" "Няма даступных апісаньняў для гэтага пераўтварэньня.
Калі ласка, " "спытайце аўтара, што робіць %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Дадаць %s новыя палі" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Трэба дадаць прынамсі адно поле." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Машына захаваньня дадзеных" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Азначэньне PARTITION" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Дадаць новага карыстальніка" diff --git a/po/be@latin.po b/po/be@latin.po index dfe9f100f4..0d4671d35c 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" @@ -67,7 +67,7 @@ msgstr "Pošuk" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -131,7 +131,7 @@ msgid "Database comment: " msgstr "Kamentar da bazy dadzienych: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Kamentar da tablicy" @@ -141,7 +141,7 @@ msgstr "Kamentar da tablicy" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -159,7 +159,7 @@ msgstr "Nazvy kalonak" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -171,7 +171,7 @@ msgstr "Typ" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -182,7 +182,7 @@ msgstr "Nul" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Pa zmoŭčańni" @@ -196,13 +196,13 @@ msgid "Links to" msgstr "Źviazanaja z" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Kamentary" @@ -320,14 +320,14 @@ msgstr "Tolki dadzienyja" msgid "CREATE DATABASE before copying" msgstr "vykanać CREATE DATABASE pierad kapijavańniem" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Dadać %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" @@ -342,8 +342,8 @@ msgstr "Pierajści da skapijavanaj bazy dadzienych" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -369,7 +369,7 @@ msgid "Edit or export relational schema" msgstr "Relacyjnaja schiema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -701,7 +701,7 @@ msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -767,7 +767,7 @@ msgstr "Słoŭnik dadzienych" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -842,12 +842,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1203,7 +1203,7 @@ msgstr "Pierazahruzić pryvilei" msgid "Removing Selected Users" msgstr "Vydalić vybranych karystalnikaŭ" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1211,7 +1211,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Redagavać" @@ -1459,7 +1459,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1686,7 +1686,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1737,7 +1737,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1898,7 +1898,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2482,7 +2482,7 @@ msgstr "Indeks nia vyznačany!" msgid "Indexes" msgstr "Indeksy" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2520,7 +2520,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2839,18 +2839,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tablic" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2934,7 +2934,7 @@ msgstr "" "Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie " "kanfihurycyju." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -3006,7 +3006,7 @@ msgstr "Adkaz MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Tłumačyć SQL" @@ -3018,11 +3018,11 @@ msgstr "Nie tłumačyć SQL" msgid "Without PHP Code" msgstr "Biez PHP-kodu" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Abnavić" @@ -3031,7 +3031,7 @@ msgstr "Abnavić" msgid "Skip Validate SQL" msgstr "Nie praviarać SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Pravieryć SQL" @@ -3149,20 +3149,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3374,7 +3374,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3525,135 +3525,125 @@ msgid "Default display direction" msgstr "Adlustravanaje pole suviazi" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Absłuhoŭvańnie tablicy" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Redagavać nastupny radok" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Pakazvać mahčymaści" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Zachavać jak fajł" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Farmat" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Ścisk" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3662,68 +3652,68 @@ msgstr "Ścisk" msgid "Put columns names in the first row" msgstr "Paznačyć nazvy paloŭ u pieršym radku" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Pali ŭziatyja ŭ" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Pali ekranujucca" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Zamianiać NULL na" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Radki padzielenyja" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Radki padzielenyja" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Versija Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3731,397 +3721,397 @@ msgstr "" msgid "Dump table" msgstr "%s tablic(y)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Uklučyć zahałovak tablicy" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Zahałovak tablicy" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Praciahnuty zahałovak tablicy" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Kluč mietki" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-typ" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Suviazi" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Typ ekspartu" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Pierazapisvać isnujučy(ja) fajł(y)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Zvarotnaje dvukośsie ŭ imionach tablic i paloŭ" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Režym sumiaščalnaści SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Stvareńnie/Abnaŭleńnie/Pravierka dat" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Vykarystoŭvać adkładzienyja ŭstaŭki" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Šasnaccatkovyja značeńni dla polaŭ typu BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Vykarystoŭvać ustaŭki ignaravańniaŭ" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maksymalnaja daŭžynia stvoranaha zapytu" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Ekspart" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Ekspartavać za adnu tranzakcyju" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy #| msgid "Query results operations" msgid "Customize default options" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Zgieneravać" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servery" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Tekst Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Staronka:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Authenticating..." msgid "Authentication" msgstr "Aŭtentyfikacyja..." -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy #| msgid "Authenticating..." msgid "Authentication settings" msgstr "Aŭtentyfikacyja..." -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings" msgstr "Nałady i źmiennyja servera" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Historyja SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4129,291 +4119,291 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Tekst Texy!" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Farmat impartavanaha fajła" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Vykarystoŭvać klučavoje słova LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Paznačyć nazvy paloŭ u pieršym radku" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Kolkaść (zapytaŭ), jakija treba prapuścić ad pačatku" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "Kolkaść adkrytych tablic." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Analizavać tablicu" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4421,448 +4411,448 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Źmianić paradak tablicy" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Pierajmienavać tablicu ŭ" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Patokaŭ uznaŭleńnia" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4871,343 +4861,343 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "imia bazy dadzienych" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizavać tablicu" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Pakazvać kamentary kalonak" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defrahmentavać tablicu" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Vyrazy" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Relational display field" msgid "Show display direction" msgstr "Adlustravanaje pole suviazi" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Pakazać adkrytyja tablicy" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Pakazać sietku" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5215,28 +5205,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5246,90 +5236,90 @@ msgstr "" msgid "Password" msgstr "Parol" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Pa zmoŭčańni" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5337,56 +5327,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5394,13 +5384,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5428,51 +5418,51 @@ msgstr "Aŭtentyfikacyja..." msgid "Signon authentication" msgstr "Aŭtentyfikacyja..." -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV z vykarystańniem LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Specyfikacyja Open Document" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Inšy koler" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Database export options" msgid "Database export options" msgstr "Nałady ekspartu bazy dadzienych" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV dla dadzienych MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Tekst Open Document" @@ -5649,9 +5639,8 @@ msgstr "Stvaryć tablicu" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nazva" @@ -6051,7 +6040,7 @@ msgid "Hide" msgstr "Schavać" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" @@ -7002,7 +6991,7 @@ msgstr "Niapravilnaja kolkaść paloŭ u CSV-dadzienych u radku %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Imia tablicy" @@ -7713,7 +7702,7 @@ msgstr "" msgid "Direction" msgstr "Pramyja linii suviaziaŭ" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Daŭžynia/Značeńni*" @@ -8017,7 +8006,7 @@ msgstr "Źmiest" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atrybuty" @@ -8330,7 +8319,7 @@ msgstr "Tablica — pustaja!" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8348,7 +8337,7 @@ msgstr "" "słeš (\"\\\") abo apostraf (\"'\") siarod hetych značeńniaŭ, pastaŭcie " "pierad imi zvarotny słeš (naprykład, '\\\\xyz' abo 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8356,13 +8345,13 @@ msgstr "" "Dla značeńniaŭ pa zmoŭčańni, kali łaska, uviadzicie prosta značeńnie, biez " "vykarystańnia zvarotnych słešaŭ i dvukośsia, vykarystoŭvajučy farmat: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8371,11 +8360,11 @@ msgstr "" "Dla atrymańnia śpisu dastupnych opcyjaŭ transfarmacyi i pieraŭtvareńniaŭ " "ichnych MIME-typaŭ, naciśnicie na %sapisańni pieraŭtvareńniaŭ%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opcyi pieraŭtvareńnia" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8387,36 +8376,36 @@ msgstr "" "apostraf (\"'\") u hetych značeńniach, ustaŭcie zvarotny słeš pierad imi " "(naprykład, '\\\\xyz' abo 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nijakaja" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Jak vyznačana:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Pieršasny" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Poŭnatekstekstavaje" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8425,28 +8414,28 @@ msgstr "" "Niama dastupnych apisańniaŭ dla hetaha pieraŭtvareńnia. Kali łaska, " "spytajcie aŭtara, što robić %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dadać %s novyja pali" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Treba dadać prynamsi adno pole." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Mašyna zachavańnia dadzienych" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Aznačeńnie PARTITION" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new User" msgid "+ Add a value" diff --git a/po/bg.po b/po/bg.po index 43439e2e09..901aa5c541 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-02 09:19+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" @@ -66,7 +66,7 @@ msgstr "Търсене" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Коментар към БД: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Коментари към таблицата" @@ -140,7 +140,7 @@ msgstr "Коментари към таблицата" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Kолона" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Тип" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Празно" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "По подразбиране" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Свързана към" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Коментари" @@ -313,14 +313,14 @@ msgstr "Само данните" msgid "CREATE DATABASE before copying" msgstr "Изпълняване на CREATE DATABASE преди копирането" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Добавяне на %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне на AUTO_INCREMENT" @@ -335,8 +335,8 @@ msgstr "Показване на копираната БД" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Редакция или експорт на релационна схема" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -665,7 +665,7 @@ msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -727,7 +727,7 @@ msgstr "Речник на данните" msgid "Tracked tables" msgstr "Следени таблици" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -802,12 +802,12 @@ msgstr "Следене на таблица" msgid "Database Log" msgstr "Дневник БД" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Стойности за колоната \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Въведете всяка стойност в отделно поле." @@ -1151,7 +1151,7 @@ msgstr "Презареждане на правата" msgid "Removing Selected Users" msgstr "Изтриване на маркираните потребители" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Затваряне" @@ -1159,7 +1159,7 @@ msgstr "Затваряне" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Редакция" @@ -1393,7 +1393,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1622,7 +1622,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1673,7 +1673,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1802,7 +1802,7 @@ msgstr "Изпълняване на SQL" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2326,7 +2326,7 @@ msgstr "Не е избран индекс!" msgid "Indexes" msgstr "Индекси" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2364,7 +2364,7 @@ msgstr "" "Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да " "бъде премахнат." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2669,18 +2669,18 @@ msgid "shared" msgstr "споделен" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Таблици" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2756,7 +2756,7 @@ msgstr "Невалиден индекс на сървър: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Невалиден хост за сървър %1$s. Прегледайте конфигурацията." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2828,7 +2828,7 @@ msgstr "MySQL отговори: " msgid "Failed to connect to SQL validator!" msgstr "Неуспешно свързване към SQL валидатора!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Обяснение на SQL" @@ -2840,11 +2840,11 @@ msgstr "Пропусни Explain SQL" msgid "Without PHP Code" msgstr "Без PHP код" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Създаване на PHP код" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Опресняване" @@ -2853,7 +2853,7 @@ msgstr "Опресняване" msgid "Skip Validate SQL" msgstr "Пропусни Validate SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Валидиране на SQL" @@ -2967,20 +2967,20 @@ msgid "Click to toggle" msgstr "Щракване за превключване" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3179,7 +3179,7 @@ msgid "Set value: %s" msgstr "Стойност: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Стойност по подразбиране" @@ -3333,64 +3333,54 @@ msgid "Default display direction" msgstr "Ориентация по подразбиране" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Показваният подпрозорец при отваряне на БД" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Подпрозорец по подразбиране за БД" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Показваният подпрозорец при отваряне на сървър" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Подпрозорец по подразбиране за сървъри" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Показваният подпрозорец при отваряне на таблица" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Подпрозорец по подразбиране за таблици" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Показване на двоичните данни по подразбиране в шестнадесетичен вид" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Показване на двоичните данни в шестнадесетичен вид" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Показване на сървърите в списък" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3398,387 +3388,387 @@ msgstr "" "Забранява възможността за избор на много таблици за едновременно извършване " "на профилактика като оптимизиране или поправка." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Забрана на избора на много таблици за профилактика" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Редактиране на SQL заявки в отделен прозорец" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Редакция в прозорец" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Показване на грешки" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Събиране на грешки" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" "Показване на пиктограми при предупреждения, грешки и информативни съобщения" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Пиктограми при грешките" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Изпращане" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Знаков набор на файла" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Компресия" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Поставяне имената на полетата в първи ред" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Колоните са оградени с" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Колоните са избегнати с" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Заменяй NULL с" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Колоните завършват с" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Редовете завършват с" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel версия" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Шаблон за име на БД" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Шаблон за име на сървър" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Шаблон за име на таблица" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Схема на таблица" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Включване на заглавие на таблицата" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Заглавие на таблицата" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Продължение на заглавието на таблицата" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Етикет на ключа" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME тип" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Релации" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Метод за експортиране" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Запазване на сървъра" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Презаписване на съществуващите файл(ове)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Запомняне на шаблона за име на файл" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Ограждане на имената на таблици и полета с обратни кавички" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Режим на съвместимост на SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Създаване/Обновяване/Проверка на дати" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Използване на отложени вмъквания" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Забрана на проверките за външен ключ" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Използване на шестнадесетична стойност за BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Използване на INSERT IGNORE" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Максимална дължина на създадената заявка" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Тип експорт" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Изолиране на експорта в транзакция" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Преглеждане" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Персонализиране на преглеждането" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Разработчик" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Настройки за разработчици на phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Редактиране" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Персонализиране на редактирането" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Свойства" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Общи" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Настройки на някои често използвани опции" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Импорт / експорт" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Опции за показване на БД" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Управляваща рамка" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Сървъри" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Настройки показване сървъри" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Настройки показване таблици" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Главна рамка" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Други основни настройки" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Настройки, които не са за другаде" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Заглавие в браузъра" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3788,112 +3778,112 @@ msgstr "" "html#cfg_TitleTable]документацията[/a] за магическите низове и техните " "стойности." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Прозорец за заявки" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Сигурност" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Основни настройки" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Удостоверяване" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Настройки по удостоверяване" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Сървърна конфигурация" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Параметри за връзка със сървъра" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Хранилище за конфигурацията" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Следене за промени" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL заявки" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Персонализиране на връзките показвани след изпълнение на SQL заявка" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Настройки на SQL заявките" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL валидатор" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3901,277 +3891,277 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Начало" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Подпрозорци" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Текстови полета" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Персонализиране на текстовите полета" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! текст" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Предупреждения" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Скрива някои от предупрежденията, показвани от phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Заместване на данните от таблицата с данните от файла" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Формат на импортирания файл" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Използване на ключовата дума LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Имена на колони в първи ред" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Брой заявки, които да бъдат пропуснати от началото" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Броят добавени редове" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Показване лого" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Изключете ако искате да виждате всички БД наведнъж" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Включване на синтактично оцветяване" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Максимален брой скоро отваряни таблици; 0 за забрана" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Последно отваряни таблици" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4179,439 +4169,439 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Двойни текстови полета за колони тип LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "По-голямо текстово поле за LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" "Скрива предупреждението за липсващ mcrypt при удостоверяване с бисквитки" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Ограничения на паметта" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Височина на прозореца за заявки" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Ширина на прозореца за заявки (в пиксели)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Ширина на прозореца за заявки" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Запомняне сортирането на таблицата" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Повтаряне на заглавката" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Папка на сървъра, в която експортите да бъдат записвани" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Таблица за белязки" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Тип връзки" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Брой таблици" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Кое PHP разширение да бъде използвано; ползвайте mysqli ако е налично" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Използвано PHP разширение" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of recently used tables; set 0 to disable" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Максимален брой скоро отваряни таблици; 0 за забрана" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4620,327 +4610,327 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Име БД" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Порт на сървъра" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Последно отваряна таблица" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Сокет на сървъра" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Показване таблица с колоните" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Таблица с визуалните настройки" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Добавяне DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Добавяне DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Добавяне DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Показване на формуляр за смяна на парола" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Показване на формуляр за създаване на БД" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Показване типовете полета" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show indexes" msgid "Show hint" msgstr "Показване на индексите" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Показване на връзка към phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Показване на SQL заявките" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Показване статистика" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4948,28 +4938,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Пропускане заключени таблици" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -4979,86 +4969,86 @@ msgstr "" msgid "Password" msgstr "Парола" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Потребителско име" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Колони в текство поле" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Реда в текстово поле" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Заглавие по подразбиране" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5066,56 +5056,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Позволява проверка за обновления на страницата на phpMyAdmin" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5123,13 +5113,13 @@ msgstr "Позволява проверка за обновления на ст msgid "Version check" msgstr "Проверка за обновления" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5149,47 +5139,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV с LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Бърз" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Опции за експорт на БД" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV за MS Excel данни" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document Text" @@ -5362,9 +5352,8 @@ msgstr "Създаване таблица" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Име" @@ -5692,7 +5681,7 @@ msgid "Hide" msgstr "Скриване" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Браузърна трансформация" @@ -6537,7 +6526,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Име на таблица" @@ -7216,7 +7205,7 @@ msgstr "Параметри" msgid "Direction" msgstr "Посока" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Дължина/Стойности" @@ -7474,7 +7463,7 @@ msgstr "Съдържание" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Атрибути" @@ -7771,7 +7760,7 @@ msgstr "Таблицата изглежда празна!" msgid "Tracking of %s.%s is activated." msgstr "Проследяването на %s.%s е активно." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7783,7 +7772,7 @@ msgstr "" "обратна черта (\"\\\") или апостроф (\"'\") между тези стойности, сложите " "обратна черта пред тях (например: '\\\\xyz' или 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -7791,13 +7780,13 @@ msgstr "" "За стойностите по подразбиране, моля въведете само една стойност, без " "обратни черти или апостроф, използвайки следния формат: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Индекс" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -7806,11 +7795,11 @@ msgstr "" "За списъка на достъпните опции на трансформацията и техните трансформации по " "MIME тип натиснете на %sописания на трансформацията%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Опции на трансформацията" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -7823,34 +7812,34 @@ msgstr "" "поставете пред тях допълнителна обратно наклонена черта (например '\\\\xyz' " "или 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "Много ENUM или SET данни?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Още място за редакция" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Няма" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Дефиниран като:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Първичен" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Пълнотекстово" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -7859,25 +7848,25 @@ msgstr "" "Няма описание за тази трансформация.
Моля обърнете се към автора, " "относно това какво прави %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Нови %s колона(и)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Трябва да добавите поне една колона." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Хранилище" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Нова стойност" diff --git a/po/bn.po b/po/bn.po index 09bea45724..e430b0d424 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" @@ -66,7 +66,7 @@ msgstr "খুঁজুন" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -128,7 +128,7 @@ msgid "Database comment: " msgstr "ডাটাবেজ মন্তব্যসমূহঃ" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "টেবিলের মন্তব্য সমূহ" @@ -138,7 +138,7 @@ msgstr "টেবিলের মন্তব্য সমূহ" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -154,7 +154,7 @@ msgstr "কলামের" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -166,7 +166,7 @@ msgstr "ধরন" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -177,7 +177,7 @@ msgstr "খালি" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "ডিফল্ট" @@ -191,13 +191,13 @@ msgid "Links to" msgstr "সংযুক্তি হবে" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "মন্তব্যসমূহ" @@ -314,14 +314,14 @@ msgstr "শুধু ডাটা" msgid "CREATE DATABASE before copying" msgstr "কপি করার আগে ডাটাবেজ় তৈরী কর" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "সংযুক্ত %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT এর মান সংযুক্ত করুন" @@ -336,8 +336,8 @@ msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তি #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -363,7 +363,7 @@ msgid "Edit or export relational schema" msgstr "Relational schema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -688,7 +688,7 @@ msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -756,7 +756,7 @@ msgstr "ডাটা অভিধান" msgid "Tracked tables" msgstr "টেবিল পরীক্ষা কর" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -838,12 +838,12 @@ msgstr "টেবিল পরীক্ষা কর" msgid "Database Log" msgstr "ডাটাবেজ" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1194,7 +1194,7 @@ msgstr "Reload privileges" msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1202,7 +1202,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "সম্পাদনা কর" @@ -1445,7 +1445,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1669,7 +1669,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1718,7 +1718,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1875,7 +1875,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2449,7 +2449,7 @@ msgstr "No index defined!" msgid "Indexes" msgstr "ইন্ডেস্ক সমূহ" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2486,7 +2486,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2800,18 +2800,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "টেবিলসমূহ" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2892,7 +2892,7 @@ msgstr "Invalid server index: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2964,7 +2964,7 @@ msgstr "MySQL said: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL ব্যাখ্যা কর" @@ -2976,11 +2976,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "PHP কোড ছাড়া" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Refresh" @@ -2989,7 +2989,7 @@ msgstr "Refresh" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Validate SQL" @@ -3103,20 +3103,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Structure" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3328,7 +3328,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3479,139 +3479,129 @@ msgid "Default display direction" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Table maintenance" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "পরবর্তী সাড়ি সম্পাদনা করুন" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "বৈশিষ্ট্যসমূহ প্রদর্শন কর" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "ফাইল হিসেবে সেভ করুন" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "ফাইল এর অক্ষরসমূহঃ" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "ফরমেট" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "সংকোচন" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3620,71 +3610,71 @@ msgstr "সংকোচন" msgid "Put columns names in the first row" msgstr "Put fields names in the first row" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Fields enclosed by" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Fields escaped by" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel edition" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3692,406 +3682,406 @@ msgstr "ফাইল নাম এর টেমপ্লেট" msgid "Dump table" msgstr "%s table(s)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Include table caption" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Table caption" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Label key" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "মাইম এর ধরন" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Export type" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Enclose table and field names with backquotes" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "তইরী/আপডেট/তারিখ পরীক্ষা কর" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Disable foreign key checks" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Export type" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Export type" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "Export defaults" msgstr "ফাইল ইম্পোর্ট কর" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 #, fuzzy msgid "Customize default export options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "তৈরী কর" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "ফাইল ইম্পোর্ট কর" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "সার্ভারসমূহ" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 #, fuzzy msgid "Servers display options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 #, fuzzy msgid "Tables display options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "পাতার সংখ্যাঃ" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Query window" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 #, fuzzy msgid "Customize query window options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "বর্ণনা" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy msgid "Authentication settings" msgstr "Replication" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 #, fuzzy msgid "Customize import defaults" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL query" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL query" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL query" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL history" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4099,72 +4089,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "অবস্থা" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "টেবিল" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Use text field" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -4175,222 +4165,222 @@ msgstr "" "This might be good way to import large files, however it can break " "transactions." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "লোকাল কী-ওয়ার্ড ব্যাবহার করুন" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Put fields names in the first row" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Number of records(queries) to skip from start" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Add AUTO_INCREMENT value" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 #, fuzzy msgid "Number of inserted rows" msgstr "The number of sorted rows." -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "The number of tables that are open." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 #, fuzzy msgid "Database tree separator" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 #, fuzzy msgid "Use light version" msgstr "MySQL client version" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Recently used tables" msgstr "টেবিল পরীক্ষা কর" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4398,457 +4388,457 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Maximum databases" msgstr "কোন ডাটাবেজ নাই" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Resource limits" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "টেবিল অর্ডার পরিবর্তন কর" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Query window" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Query window" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Query window" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "টেবিল রিনেম করুন" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "থ্রেড রিপেয়ার করুন" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "Data home directory" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "সংযোগসমূহ" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "কোন টেবিল নাই" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 #, fuzzy msgid "PHP extension to use" msgstr "PHP Version" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "কোন ডাটাবেজ নাই" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "সার্ভার এর নাম" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4857,347 +4847,347 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "ডাটাবেজ এর নাম" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "সার্ভারের আইডি" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "টেবিল বিশ্লেষণ কর" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "টেবিল রিপেয়ার করুন" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Server Choice" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "কলামের মন্তব্য প্রদর্শন করা হচ্ছে" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Statements" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatic recovery mode" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Show open tables" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Show grid" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Show Full Queries" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Row Statistics" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5205,29 +5195,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 #, fuzzy msgid "Skip locked tables" msgstr "Show open tables" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5237,90 +5227,90 @@ msgstr "" msgid "Password" msgstr "পাসওয়ার্ড" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "ব্যাবহারকারী" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Add/Delete Field Columns" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy msgid "Default title" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5328,57 +5318,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 #, fuzzy msgid "Upload directory" msgstr "Data home directory" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5386,13 +5376,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5412,47 +5402,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV for MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document Text" @@ -5629,9 +5619,8 @@ msgstr "একটি নতুন পাতা তৈরী কর" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "নাম" @@ -6033,7 +6022,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" @@ -6945,7 +6934,7 @@ msgstr "Invalid field count in CSV input on line %d." msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 #, fuzzy msgid "Table name" @@ -7649,7 +7638,7 @@ msgstr "" msgid "Direction" msgstr "Creation" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Length/Values" @@ -7942,7 +7931,7 @@ msgstr "Table of contents" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Attributes" @@ -8255,7 +8244,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8273,7 +8262,7 @@ msgstr "" "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8281,13 +8270,13 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "ইন্ডেস্ক" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8296,11 +8285,11 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Transformation options" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8312,36 +8301,36 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "কোনটিই নয়" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "প্রাথমিক" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Fulltext" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8350,28 +8339,28 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "You have to add at least one field." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "একটি নতুন ইউজার যোগ করুন" diff --git a/po/br.po b/po/br.po index 1051dbb3da..9a89fc6e2c 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-08-22 20:10+0200\n" "Last-Translator: Fulup \n" "Language-Team: LANGUAGE \n" @@ -70,7 +70,7 @@ msgstr "Klask" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -134,7 +134,7 @@ msgid "Database comment: " msgstr "Evezhiadenn diwar-benn an diaz roadennoù : " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Evezhiadennoù diwar-benn an daolenn" @@ -144,7 +144,7 @@ msgstr "Evezhiadennoù diwar-benn an daolenn" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -160,7 +160,7 @@ msgstr "Bann" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -172,7 +172,7 @@ msgstr "Seurt" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -183,7 +183,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Dre ziouer" @@ -197,13 +197,13 @@ msgid "Links to" msgstr "Liammet ouzh" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Evezhiadennoù" @@ -317,14 +317,14 @@ msgstr "Ar roadennoù hepken" msgid "CREATE DATABASE before copying" msgstr "KROUIÑ AN DIAZ ROADENNOÙ a-raok eilañ" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Ouzhpennañ %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" @@ -339,8 +339,8 @@ msgstr "Mont d'an diaz roadennoù eilet" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -361,7 +361,7 @@ msgid "Edit or export relational schema" msgstr "Embann pe ezporzhiañ ur chema kar" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -671,7 +671,7 @@ msgid "Check tables having overhead" msgstr "Askañ an taolennoù gant dilerc'hioù" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -733,7 +733,7 @@ msgstr "Geriadur roadennoù" msgid "Tracked tables" msgstr "Taolennoù heuliet-pizh" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -808,12 +808,12 @@ msgstr "Heuliañ an daolenn" msgid "Database Log" msgstr "Marilh an diaz roadennoù" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Talvoudoù evit ar bann \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Merkañ pep talvoud en ur vaezienn a-ziforc'h." @@ -1146,7 +1146,7 @@ msgstr "Oc'h adkargañ an dreistgwirioù" msgid "Removing Selected Users" msgstr "O lemel kuit an implijerien diuzet" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Serriñ" @@ -1154,7 +1154,7 @@ msgstr "Serriñ" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Kemmañ" @@ -1368,7 +1368,7 @@ msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1586,7 +1586,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1635,7 +1635,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1765,7 +1765,7 @@ msgstr "Pad seveniñ hirañ" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2292,7 +2292,7 @@ msgstr "N'eus bet termenet meneger ebet !" msgid "Indexes" msgstr "Menegerioù" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2330,7 +2330,7 @@ msgstr "" "Evit doare eo kevatal an menegerioù %1$s ha %2$s hag unan anezho a c'hallfe " "bezañ dilamet." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2637,18 +2637,18 @@ msgid "shared" msgstr "kenrannet" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Taolennoù" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2724,7 +2724,7 @@ msgstr "Meneger servijer faziek : %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Anv ostiz direizh evit ar servijer %1$s. Gwiriit ar c'hefluniadur." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2796,7 +2796,7 @@ msgstr "respontet eo bet gant MySQL : " msgid "Failed to connect to SQL validator!" msgstr "DIbosupl kevreañ d'ar c'hadarnataer SQL !" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Displegañ SQL" @@ -2808,11 +2808,11 @@ msgstr "N'eo ket dav displegañ SQL" msgid "Without PHP Code" msgstr "Hep kod PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Krouiñ kod PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Freskaat" @@ -2821,7 +2821,7 @@ msgstr "Freskaat" msgid "Skip Validate SQL" msgstr "N'eo ket dav kadarnaat SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Kadarnaat SQL" @@ -2933,20 +2933,20 @@ msgid "Click to toggle" msgstr "Klikañ evit gwintañ" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Framm" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3146,7 +3146,7 @@ msgid "Set value: %s" msgstr "Lakaat an talvoud da %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Adlakaat an talvoud dre ziouer" @@ -3312,66 +3312,54 @@ msgid "Default display direction" msgstr "Talvoud dre ziouer durc'hadur an diskwel" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] pe un niver a verk an talvoud " -"brasañ a vo implijet ar mod a-serzh evitañ" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Durc'hadur an diskwel evit kemmañ/krouiñ bannoù" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Ivinell diskouezet pa'z eer tre en un diaz roadennoù" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Ivinell dre ziouer evit un diaz roadennoù" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Ivinell diskouezet pa'z eer tre en ur servijer" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Ivinell dre ziouer evit ar servijer" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Ivinell diskouezet pa'z eer tre en un daolenn" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Ivinell dre ziouer evit an taolennoù" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù) dre ziouer" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù)" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Diskouez roll an diazoù roadennoù e-lec'h ul lañser desachañ" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Diskouez a ra an diazoù roadennoù e stumm ur roll" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Diskouez roll ar servijerioù e-lec'h ur roll desachañ" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Diskouez a ra ar servijerioù e stumm ur roll" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3379,35 +3367,35 @@ msgstr "" "Diweredekaat an oberiadennoù trezalc'h a-vras, evel gwellekaat pe kempenn " "taolennoù diuzet un diaz roadennoù." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Diweredekaat trezalc'h an taolennoù lies." -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Aozañ ar rekedoù SQL en ur prenestr difoupañ" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Aozañ en ur prenestr" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Diskouez ar fazioù" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Dastum ar fazioù" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Diskouez an arlunioù evit ar c'hemennoù diwall, faziañ ha titouriñ" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Arlunioù evit ar fazioù" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3415,205 +3403,205 @@ msgstr "" "Niver a eilennoù lakaet evit seveniñ ar skriptoù ([kbd]0[/kbd] a dalvez hep " "bevenn)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Pad seveniñ hirañ" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Enrollañ evel restr" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Strobad arouezennoù ar restr" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Furmad" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Gwaskadur" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Diskouez anvioù ar bannoù diouzhtu el linenn gentañ" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Bannoù gronnet gant" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Arouezenn dec'hout" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Erlec'hiañ NULL gant" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Tennañ an arouezennoù dibenn linenn e dibarzh ar bannoù" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Bannoù a echu gant" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Linennoù a echu gant" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Stumm Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Patrom anv diaz roadennoù" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Patrom anv servijer" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Patrom anv taolenn" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Ezporzhiañ an daolenn" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Enklozañ an istitloù" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Istitl eus an daolenn" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Enklozañ an istitloù" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Alc'hwez an dikedenn" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Seurt MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Darempredoù" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Doare ezporzhiañ" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Enrollañ war ar servijer" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Frikañ ar restroù zo c'hoazh" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Derc'hel soñj eus patrom anv ar restr" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Lakaat krochedoù stouet a bep tu da anvioù an taolennoù hag ar bannoù" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Mod kenglotañ gant SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "Dibarzhioù evit CREATE TABLE :" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Deiziad krouiñ/hizivaat/gwiriañ" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Ensoc'hadennoù gant dale" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Implijout an eizhdekvedennad evit BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Arabat ensoc'hañ ul linenn a dalvez kement hag un alc'hwez nemetañ" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Ereadur d'ober gantañ pa vez ensoc'het roadennoù" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Ment vrasañ ar reked krouet" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Seurt ezporzhiadenn" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Enklozañ an ezporzhiadenn en un treuzgread" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Ezporzhiañ an eur er furmad UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Rediañ a ra kevreadennoù https etre ar servijer ha phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Rediañ ar c'hevreadennoù SSL" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3622,148 +3610,148 @@ msgstr "" "content[/kbd] zo evit an roadenn a zaveer dezhi, [kbd]id[/kbd] zo evit " "talvout an alc'hwez" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Urzh dispakañ an alc'hwezioù estren" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Ul lañser desachañ a vo implijet ma vez nebeutoc'h a elfennoù" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Bevenn evit an alc'hwezioù estren" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Mod merdeiñ" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Personelaat ar mod merdeiñ" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Personelaat an dibarzhioù dre ziouer" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Diorroer" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Arventennoù evit diorroerien phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Mod aozañ" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Personelaat ar mod aozañ" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Talvoudoù dre ziouer evit an ezporzhiañ" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Personelaat an talvoudoù ezporzhiañ implijet dre ziouer" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Dezverkoù" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Dre-vras" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Termeniñ un nebeud dibarzhioù implijet ingal" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Talvoudoù enporzhiañ dre ziouer" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Personelaat an talvoudoù implijet dre ziouer" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Enporzhiañ / Ezporzhiañ" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Kefluniañ ar c'havlec'hioù enporzhiañ hag an dibarzhioù gwaskañ" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTex" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Dibarzhioù diskwel an diazoù roadennoù" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Taolenn verdeiñ" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Personelaat tres an daolenn verdeiñ" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servijerioù" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Dibarzhioù diskwel ar servijerioù" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Dibarzhioù diskwel an taolennoù" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Taolenn bennañ" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Testenn Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Arventennoù pouezus all" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Arventennoù a bep seurt" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Titloù pajennoù" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3773,22 +3761,22 @@ msgstr "" "html#cfg_TitleTable]teuliadur[/a] evit an neudennadoù hud a c'haller ober " "ganto." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Prenestr klask" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Personelaat dibarzhioù ar prenestr klask" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Surentez" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3796,23 +3784,23 @@ msgstr "" "Notennit mat n'eo phpMyAdmin nemet un etrefas ha n'eo ket bevennet e mod " "ebet MySQL gant an perzhioù anezhi" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Arventennoù diazez" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Dilesadur" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Arventennoù dilesañ" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Kefluniadur ar servijer" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3820,15 +3808,15 @@ msgstr "" "Kefluniadur pishoc'h; bezit sur e ouzit ar pezh a rit a-raok mont da gemmañ " "tra pe dra" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Merkañ arventennoù kevreañ ar servijer" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Mirlec'h ar c'hefluniadurioù" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3838,11 +3826,11 @@ msgstr "" "ouzhpenn, gwelet [a@Documentation.html#linked-tables]phpMyAdmin " "configuration storage[/a] en teuliadur" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Heuliañ ar c'hemmoù" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3850,44 +3838,44 @@ msgstr "" "Heuliañ ar c'hemmoù graet en diaz roadennoù. Rekis eo kaout ar stokañ " "kefluniadurioù phpMyAdmin." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Personelaat an dibarzhioù ezporzhiañ" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Personelaat an arventennoù enporzhiañ dre ziouer" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Personelaat ar framm merdeiñ" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Personelaat ar framm pennañ" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Rekedoù SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Boest rekedoù SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Personelaat al liammoù diskwelet er boestoù rekedoù SQL" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Arventennoù ar rekedoù SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "Kadarnataer SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3899,43 +3887,43 @@ msgstr "" "[a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 " "Upright Database Technology. All rights reserved.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Pajenn deraouiñ" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Personelaat ar bajenn deraouiñ" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Ivinelloù" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Personelaat an ivinelloù" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Maeziennoù testenn" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Personelaat ar maeziennoù ebarzhiñ testenn" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Testenn Texy!" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Kemennoù diwall" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Diweredekaat lod eus ar c'hemennoù diwall diskouezet gant phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3943,15 +3931,15 @@ msgstr "" "Gweredekaat ar gwaskañ [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] evit an " "oberiadennoù enporzhiañ hag ezporzhiañ" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Arventennoù ouzhpenn evit iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3959,11 +3947,11 @@ msgstr "" "Ma vez gweredekaet e kendalc'h phpMyAdmin da blediñ gant ar rekedoù " "liesfrazennek ha pa vefe ur fazi gant unan anezho." -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Na ober van ouzh ar fazioù er rekedoù liesfrazennek" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3973,21 +3961,21 @@ msgstr "" "Gallout a ra sikour da enporzhiañ restroù bras, ha pa c'hallfe terriñ " "treuzgreadoù zo." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Enporzhiañ darnek : aotren paouez" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Arabat paouez gant an enporzhiañ pa vez ur fazi gant INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Erlec'hiañ roadennoù an daolenn gant re ar restr" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3995,190 +3983,190 @@ msgstr "" "Furmad dre ziouer; bezit emskiantek ez eo ar roll-mañ diouzh al lec'hiadur " "(diaz roadennoù, taolenn) ha n'eus nemet SQL zo hegerz dalc'hmat" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Furmad ar restr enporzhiañ" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Ober gant ar ger-alc'hwez LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Anvioù bannoù el linenn gentañ" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Arabat enporzhiañ linennoù goullo" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Enporzhiañ moneizioù ($5.00 a zeu da vezañ 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Enporzhiañ an dregantadoù evel degelennoù (12.00% a zeu da vezañ .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Niver a rekedoù da lezel a-gostez adalek ar penn-kentañ" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Enporzhiañ darnek : lezel ar rekedoù a gostez" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Arabat ober gant AUTO_INCREMENT evit an talvoudoù par da mann" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Talvoud dre ziouer evit an takadoù riklañ" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "An niver a linennoù a c'haller ober ganto war un dro" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Niver a linennoù da ensoc'hañ" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Bukadenn evit an arlun moned prim" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Diskouez al logo er banell verdeiñ gleiz" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Diskouez al logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Diskouez dibab ar servijerioù e laez ar banell gefluniañ" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4186,436 +4174,436 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4624,327 +4612,327 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show indexes" msgid "Show hint" msgstr "Diskouez menegerioù" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4952,28 +4940,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -4983,86 +4971,86 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5070,56 +5058,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5127,13 +5115,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5153,47 +5141,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5364,9 +5352,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "" @@ -5692,7 +5679,7 @@ msgid "Hide" msgstr "Kuzhat" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "" @@ -6533,7 +6520,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7219,7 +7206,7 @@ msgstr "" msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "" @@ -7492,7 +7479,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "" @@ -7772,7 +7759,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7780,30 +7767,30 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -7811,59 +7798,59 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "" @@ -12345,6 +12332,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] pe un niver a verk an talvoud " +#~ "brasañ a vo implijet ar mod a-serzh evitañ" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Durc'hadur an diskwel evit kemmañ/krouiñ bannoù" + #, fuzzy #~ msgid "Data Label" #~ msgstr "Diaz roadennoù" diff --git a/po/bs.po b/po/bs.po index 2c9ab00f35..ba513dae3d 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" @@ -65,7 +65,7 @@ msgstr "Pretraživanje" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -127,7 +127,7 @@ msgid "Database comment: " msgstr "Komentar baze:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Komentari tabele" @@ -137,7 +137,7 @@ msgstr "Komentari tabele" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -155,7 +155,7 @@ msgstr "Imena kolona" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -167,7 +167,7 @@ msgstr "Tip" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -178,7 +178,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Podrazumjevano" @@ -192,13 +192,13 @@ msgid "Links to" msgstr "Veze ka" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Komentari" @@ -317,14 +317,14 @@ msgstr "Samo podaci" msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" @@ -340,8 +340,8 @@ msgstr "Pređi na kopiranu tabelu" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -367,7 +367,7 @@ msgid "Edit or export relational schema" msgstr "Relaciona shema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -693,7 +693,7 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -759,7 +759,7 @@ msgstr "Rečnik podataka" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -839,12 +839,12 @@ msgstr "Provjeri tabelu" msgid "Database Log" msgstr "Baza podataka" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1178,7 +1178,7 @@ msgstr "Globalne privilegije" msgid "Removing Selected Users" msgstr "Ukloni izabrane korisnike" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1186,7 +1186,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Promeni" @@ -1419,7 +1419,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1643,7 +1643,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1693,7 +1693,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1847,7 +1847,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2419,7 +2419,7 @@ msgstr "Ključ nije definisan!" msgid "Indexes" msgstr "Ključevi" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2456,7 +2456,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2759,18 +2759,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabele" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2846,7 +2846,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2918,7 +2918,7 @@ msgstr "MySQL kaže: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Objasni SQL" @@ -2930,11 +2930,11 @@ msgstr "Preskoči objašnjavanje SQL-a" msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "" @@ -2943,7 +2943,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Preskoči provjeru SQL-a" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Provjeri SQL" @@ -3057,20 +3057,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3283,7 +3283,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3433,134 +3433,124 @@ msgid "Default display direction" msgstr "Opcije za izvoz baze" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Radnje na tabeli" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Prikaži osobine" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Sačuvaj kao datoteku" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Karakter set datoteke:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3569,69 +3559,69 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Stavi imena polja u prvi red" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Polja ograničena sa" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Escape karakter      " -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Zamijeni NULL sa" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linije se završavaju sa" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Linije se završavaju sa" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3639,401 +3629,401 @@ msgstr "Šablon imena datoteke" msgid "Dump table" msgstr "%s tabela" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 #, fuzzy msgid "Table caption" msgstr "Opcije tabele" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 #, fuzzy msgid "Continued table caption" msgstr "Opcije tabele" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-tipovi" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "Izvoz" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće fajlove" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Koristi ' za ograničavanje imena polja" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 #, fuzzy msgid "Use delayed inserts" msgstr "Prošireni INSERT" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Prošireni INSERT" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Nema tabela" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV format" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "General" msgstr "Generirao" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Uvoz fajlova" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Broj strane:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL upit" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL upit" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL upit" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL istorijat" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4041,288 +4031,288 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Tabela" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Koristi tekst polje" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Stavi imena polja u prvi red" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Analiziraj tabelu" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4330,451 +4320,451 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Ograničenja resursa" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Promijeni redoslijed u tabeli" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Promjeni ime tabele u " -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Konekcije" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Nema tabela" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Baza ne postoji" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4783,343 +4773,343 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Baza podataka" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analiziraj tabelu" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Popravi tabelu" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Prikazujem komentare kolone" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Ime" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "Automatically create versions" msgstr "Verzija servera" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "Prikaži tabele" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Prikaži mrežu" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Prikaži kompletne upite" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Statistike reda" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5127,28 +5117,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5158,91 +5148,91 @@ msgstr "" msgid "Password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/obriši kolonu" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Podrazumjevano" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5250,56 +5240,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5307,13 +5297,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5333,47 +5323,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcije za izvoz baze" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5545,9 +5535,8 @@ msgstr "Napravi novu stranu" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Ime" @@ -5926,7 +5915,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Tranformacije čitača" @@ -6808,7 +6797,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7513,7 +7502,7 @@ msgstr "" msgid "Direction" msgstr "Napravljeno" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Dužina/Vrijednost*" @@ -7801,7 +7790,7 @@ msgstr "Sadržaj" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributi" @@ -8113,7 +8102,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8131,7 +8120,7 @@ msgstr "" "(\"'\") koristite ih u \"izbjegnutom\" (escaped) obliku (na primer '\\\\xyz' " "ili 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8139,13 +8128,13 @@ msgstr "" "Za podrazumjevanu vrijednost, unesite samo jednu vrijednost, bez kosih crta " "ili navodnika u ovom obliku: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Ključ" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8154,11 +8143,11 @@ msgstr "" "Za listu dostupnih opcija transformacije i njihove transformacije MIME-" "tipova, kliknite na %sopise transformacija%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opcije transformacije" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8170,36 +8159,36 @@ msgstr "" "apostrof (\"'\") u te vrijednosti, stavite obrnutu kosu crtu ispred njih (na " "primjer '\\\\xyz' ili 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "nema" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primarni" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Tekst ključ" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8207,27 +8196,27 @@ msgid "" msgstr "" "Nema opisa za ovu transformaciju.
Molimo pitajte autora šta %s radi." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Dodaj novo polje" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Dodaj novog korisnika" diff --git a/po/ca.po b/po/ca.po index 85bcc10108..32322192a9 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" @@ -66,7 +66,7 @@ msgstr "Cerca" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Comentaris de la base de dades: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Comentaris de la taula" @@ -140,7 +140,7 @@ msgstr "Comentaris de la taula" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Columna" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Tipus" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Nul" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Defecte" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Enllaços a" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Comentaris" @@ -313,14 +313,14 @@ msgstr "Només dades" msgid "CREATE DATABASE before copying" msgstr "Inclou CREATE DATABASE abans de copiar" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Afegeix %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" @@ -335,8 +335,8 @@ msgstr "Canvia a la base de dades copiada" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Edita o exporta l'esquema relacional" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -671,7 +671,7 @@ msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -739,7 +739,7 @@ msgstr "Diccionari de Dades" msgid "Tracked tables" msgstr "Taules seguides" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -814,12 +814,12 @@ msgstr "Segueix taula" msgid "Database Log" msgstr "Registre de la base de dades" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Valors per la columna \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Entra cada valor en camps separats." @@ -1173,7 +1173,7 @@ msgstr "Recarrega els permisos" msgid "Removing Selected Users" msgstr "Treu els usuaris triats" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Tanca" @@ -1181,7 +1181,7 @@ msgstr "Tanca" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Edita" @@ -1425,7 +1425,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1654,7 +1654,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1705,7 +1705,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1848,7 +1848,7 @@ msgstr "Màxim temps d'execució" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2378,7 +2378,7 @@ msgstr "No s'ha definit l'índex!" msgid "Indexes" msgstr "Indexos" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2416,7 +2416,7 @@ msgstr "" "Els indexos %1$s i %2$s semblen iguals i un d'ells possiblement es podria " "esborrar." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2736,18 +2736,18 @@ msgid "shared" msgstr "compartit" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Taules" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2824,7 +2824,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2896,7 +2896,7 @@ msgstr "MySQL diu: " msgid "Failed to connect to SQL validator!" msgstr "No es pot connectar al validador SQL!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Explica SQL" @@ -2908,11 +2908,11 @@ msgstr "Salta l'explicació de l'SQL" msgid "Without PHP Code" msgstr "Sense codi PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Crea codi PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Refresca" @@ -2921,7 +2921,7 @@ msgstr "Refresca" msgid "Skip Validate SQL" msgstr "Salta la Validació de l'SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Valida l'SQL" @@ -3037,20 +3037,20 @@ msgid "Click to toggle" msgstr "Clica per seleccionar" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Estructura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3252,7 +3252,7 @@ msgid "Set value: %s" msgstr "Estableix valor: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Restaura el valor per defecte" @@ -3416,102 +3416,90 @@ msgid "Default display direction" msgstr "Direcció de visualització per defecte" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horitzontal[/kbd], [kbd]vertical[/kbd] o bé un nombre que indica el " -"màxim nombre per quan s'utilitza el mode vertical" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Direcció de visualització per modificació/creació de columnes" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Pestanya que es mostra al entrar a una base de dades" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Pestanya de base de dades predeterminada" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Pestanya que es mostra al entrar a un servidor" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Pestanya de servidor predeterminada" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Pestanya que es mostra al entrar a una taula" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Pestanya de taula predeterminada" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Mostra el contingut binari com HEX per defecte" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Mostra el contingut binari com HEX" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Mostra les bases de dades com a llista en lloc de llista desplegable" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Mostra bases de dades com a llista" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Mostra els servidors com a llista en lloc de llista desplegable" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Mostra servidors com a llista" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Manteniment de la taula" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Edita consultes SQL en finestra desplegable" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Edita en finestra" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Mostra els errors" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Recopila errors" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Mostra icones per missatges d'avís, error i informació" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Icones d' errors" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3519,205 +3507,205 @@ msgstr "" "Estableix el temps en segons que es permet per executar ordres, ([kbd]0[/" "kbd] per no posar límit)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Màxim temps d'execució" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Desa com a arxiu" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Joc de caràcters de l'arxiu" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Compresió" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Posa els noms de columnes a la primera fila" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Columnes englobades per" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Columnes amb marca d'escapada" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Canvía NULL per" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Treu caràcters CRLF de dins de les columnes" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Columnes acabades amb" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Línies acabades amb" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Edició per excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Plantilla de nom de base de dades" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Plantilla de nom de servidor" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Plantilla de nom de taula" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Bolcat de taula" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Inclusió del titol de taula" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Títol de taula" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Continuació del títol de taula" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Etiqueta de clau" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Tipus MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relacions" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Tipus d'exportació" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Desa al servidor" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Sobreescriu arxiu(s) existent(s)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Recorda la plantilla del nom d'arxiu" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Usa -backquotes- amb noms de taules i columnes" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Modus de compatibilitat SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "opcions CREATE TABLE :" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Dates de Creació/Modificació/Comprovació" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Usa insercions diferides" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Desactiva les comprovacions de claus externes" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Usa hexadecimal per a BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Utilitza \"ignore inserts\"" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Sintaxi a usar a l'inserció de dades" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Tamany màxim de la consulta creada" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Tipus d'exportació" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Incloure exportació en la transacció" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Exporta l'hora en UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Força la connexió segura al usar phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Força la connexió SSL" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3726,149 +3714,149 @@ msgstr "" "[kbd]content[/kbd] és la dada referenciada, [kbd]id[/kbd] és el valor de la " "clau" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Ordre de claus externes a la llista desplegable" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Ús de llista desplegable si hi son menys ítems presents" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Límit de claus externes" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Mode de navegació" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Configura el mode de navegació" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Configura les opcions predeterminades" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV " -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Desenvolupador" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Opcions per desenvolupadors de phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Mode d'edició" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Configura el mode d'edició" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Predeterminats d'exportació" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Configura les opcions predeterminades d'exportació" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Propietats" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "General" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Estableix algunes de les opcions més utilitzades" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Predeterminats d'importació" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Configura les opcions predeterminades d'importació" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Importar / exportar" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" "Configura els directoris d'importació i exportació i les opcions d'empaquetat" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Opcions de visualització de les bases de dades" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Marc de navegació" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Configura l'aspecte del marc de navegació" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servidors" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Opcions de visualització dels servidors" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Opcions de visualització de les taules" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Marc principal" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Altres paràmetres principals" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Paràmetres que no encaixaven en cap altre lloc" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Títols de pàgina" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3878,22 +3866,22 @@ msgstr "" "html#cfg_TitleTable]la documentació[/a] per a cadenes màgiques que poden " "usar-se per obtenir valors especials." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Finestra de consultes" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Configura les opcions de la finestra de consultes" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Seguretat" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3901,23 +3889,23 @@ msgstr "" "Tingues en compte que phpMyAdmin només és una interficie d'usuari i les " "seves caracteristiques no limiten a MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Paràmetres bàsics" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Autenticació" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Paràmetres d'autenticació" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Configuració del servidor" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3925,15 +3913,15 @@ msgstr "" "Configuració avançada del servidor, no canviis aquestes opcions si no saps " "el que estàs fent" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Entra els paràmetres de connexió al servidor" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Infraestructura de taules enllaçades" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3943,11 +3931,11 @@ msgstr "" "adiccionals, consulta [a@Documentation.html#linked-tables]infraestructura de " "taules enllaçades[/a] a la documentació" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Seguiment de canvis" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3955,44 +3943,44 @@ msgstr "" "Seguiment de canvis a la base de dades. Necessita de la infraestructura de " "taules enllaçades de phpMyAdmin." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Configurar valors d'expotació predeterminats" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Configurar valors d'importació predeterminats" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Configurar marc de navegació" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Configurar marc principal" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Consultes SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Caixa de consultes SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Configura els enllaços mostrats a les caixes de consultes SQL" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Opcions de consultes SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "Validador SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4005,43 +3993,43 @@ msgstr "" "SQL Validator[/a], Copyright 2002 Copyright 2002 Upright Database " "Technology. Tots els drets reservats.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Inici" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Configura la pàgina d'inici" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Pestanyes" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Tria cóm vols que treballin les pestanyes" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Camps de text" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Configurar camps d'entrada de text" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "text Texy!" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Avisos" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Desactiva alguns dels avisos mostrats per phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4049,15 +4037,15 @@ msgstr "" "Activa la compressió [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] per a les " "operacions d'importació i exportació" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Paràmetres adiccionals per iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4065,11 +4053,11 @@ msgstr "" "Si està activat, phpMyAdmin continúa processant consultes de múltiples " "instruccions encara que una d'elles falli" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignora errors d'instruccions multiples" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4079,21 +4067,21 @@ msgstr "" "límit de temps. Pot ser una opció per importar grans arxius, tanmateix pot " "trencar transaccions." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Importació parcial: permet interrompre" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "No avortar en cas d'error d' INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Canviar les dades de la taula per l'arxiu " -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4101,88 +4089,88 @@ msgstr "" "Format predeterminat; sigues conscient que la llista depén de la situació " "(base de dades, taula) i només SQL està sempre disponible" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Format de l'arxiu importat" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Usa clau LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Noms de columnes a la primera fila" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "No importis files buides" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importar monedes ($5.00 a 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importar percentatges amb els decimals adients (12.00% a .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Nombre de consultes a saltar des de l'inici" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Importació parcial: saltar consultes" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No feu servir AUTO_INCREMENT per a valors zero" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Estat inicial per a les barres de desplaçament" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Quantes files es poden inserir a la vegada" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Nombre de files a inserir" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Destí per a la icona d'accés ràpid" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Mostra el logo al marc esquerre" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Mostra el logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Mostra el servidor triat a dalt del marc esquerre" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Mostra la tría de servidors" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Mínim nombre de taules mostrades a la caixa de filtre de taules" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Text que separa bases de dades en diferents nivells d'arbre" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Separador per l'arbre de bases de dades" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4190,39 +4178,39 @@ msgstr "" "Només versió lleugera; mostrar bases de dades en arbre (determinat pel " "separador definit tot seguit)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Mostra les bases de dades en arbre" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Desactiva aixó si vols veure totes les bases de dades de cop" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Usar versió lleugera" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Màxima profunditat de l'arbre de taules" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Text que separa taules en diferents nivells d'arbre" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Separador d'arbre de taules" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL on apunta el logo al marc de navegació" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Enllaç d'URL al logo" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4230,50 +4218,50 @@ msgstr "" "Obrir la pàgina enllaçada a la finestra principal ([kbd]main[/kbd]) o bé a " "una de nova ([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Destí d'enllaç al logo" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Resalta el servidor sota el cursor del ratolí" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Activa resaltat" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Màxim nombre de taules mostrades a la llista" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Taules no seguides" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Ús de pestanyes amb menys contingut gràfic" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Pestanyes lleugeres" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Màxim nombre de caràcters usats en qualsevol columna no-numèrica a la vista " "de navegació" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Limit de caràcters de la columna" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4284,11 +4272,11 @@ msgstr "" "actual. Establint aixó a FALSE fa més fàcil oblidar desconectar-se d'altres " "servidors quan estàs connectat a més d'un." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Esborra totes les galetes al desconnectar" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4296,11 +4284,11 @@ msgstr "" "Defineix si l'anterior autenticació s'ha de recuperar o no al mode " "d'autenticació per galetes" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Nom d'usuari de recuperació" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4312,55 +4300,55 @@ msgstr "" "la sessió actual, i s'esborraran tant aviat com tanquis la finestra del " "navegador. Aixó es recomana per a entorns no confiables." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Emmagatzema les galetes de connexió" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" "Defineix durant quant de temps (en segons) es vàlida una galeta " "d'autenticació" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Validesa de l'autenticació per galetes" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Doble tamany de textareas per a columnes LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "textarea més gran per a LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Usa icones a la pàgina principal" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Màxim nombre de caràcters usats quan es mostra una consulta SQL" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Tamany màxim de SQL mostrat" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Els usuaris no poden establir un valor més gran" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Màxim nombre de bases de dades mostrades al marc esquerre i a la llista" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Màxim de bases de dades" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4370,19 +4358,19 @@ msgstr "" "conté més files, es mostraran els enllaços "Anterior" i "" "Següent"." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Màxim nombre de files a mostrar" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Màxim nombre de taules mostrades a la llista" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Màxim de taules" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4390,11 +4378,11 @@ msgstr "" "Desactiva l'avís per defecte que es mostra si no hi és mcrypt per " "l'autenticació per cookies" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "avís mcrypt" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4402,47 +4390,47 @@ msgstr "" "El nombre d'octets que una ordre està autoritzada a reservar, ex. [kbd]32M[/" "kbd] ([kbd]0[/kbd] per no posar límit)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Límit de memoria" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links" msgstr "Aixó són enllaços a Edició, Edició en línia, Copia i Esborrat" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Usa l'ordre natural per ordenar els noms de taules i bases de dades" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Ordre natural" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Usa només icones, només text o bé ambdós" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Barra de navegació amb icones" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "utilitza la memòria cau de sortida per GZip per incrementar la velocitat en " "transferències HTTP" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Memòria cau de sortida per GZip" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4450,19 +4438,19 @@ msgstr "" "[kbd]SMART[/kbd] - i.e. ordre descendent per camps de tipus TIME, DATE, " "DATETIME i TIMESTAMP, ordre descendent ascendent a la resta" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Ordre de clasificació predeterminat" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Utilitza connexions persistents a bases de dades MySQL" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Connexions persistents" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4472,23 +4460,23 @@ msgstr "" "l'estructura de la base de dades, si qualsevol de les taules necessàries per " "a l'infraestructura de taules enllaçades de phpMyAdmin no s'ha pogut trobar" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Falten taules de l'infraestructura de taules enllaçades de phpMyAdmin" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Icones d'operacions de taula" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Desactiva l'edició en columnes tipus BLOB i BINARY" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Protegeix les columnes de contingut binari" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4499,125 +4487,125 @@ msgstr "" "fan servir rutines JS per mostrar l'historial de consultes (es perd al " "tancar la finestra)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Historial permanent de consultes" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Quàntes consultes s'han de desar a l'historial" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Tamany de l'historial de consultes" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Pestanya que es mostra al entrar a una nova finestra de consultes" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Pestanya de finestra de consultes predeterminada" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Alçada de la finestra de consultes (en píxels)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Alçada de la finestra de consultes" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Amplada de la finestra de consultes (en pixels)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Amplada de la finestra de consultes" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Selecciona quines funcions s'usaràn per a conversions de jocs de caràcters" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Motor d'enregistrament" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Reanomena les taules a" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Repeteix les capçeleres cada X cel.les, [kbd]0[/kbd] desactiva la funció" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Repeteix capçeleres" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Mostra el botó d'ajuda en lloc del text de la Documentació" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Mostra el botó d'ajuda" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Directori del servidor on pots desar les exportacions" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Directori de desades" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Deixa en blanc si no l'utilitzes" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Ordre d'autenticació del servidor" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Deixa en blanc per als predeterminats" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Regles d'autenticació del servidor" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Permetre connexions sense contrasenya" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Permet la connexió de root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "Nom del Domini HTTP -HTTP Basic Auth Realm- per a mostrar a l'autenticació " "HTTP" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "Domini HTTP" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4627,19 +4615,19 @@ msgstr "" "maquinari SweKey[/a] (no trobat al teu arrel de documents; es recomana a: /" "etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "Arxiu de configuració SweKey" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Mètode d'autenticació a usar" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Tipus d'autenticació" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4647,11 +4635,11 @@ msgstr "" "Deixa en blanc per desactivar les [a@http://wiki.phpmyadmin.net/pma/bookmark]" "consultes desades[/a], suggerit: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Taula de consultes desades" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4659,31 +4647,31 @@ msgstr "" "Deixa en blanc per no usar comentaris de columna o tipus mime, suggerit: " "[kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Taula d'informació de columna" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Connexió comprimida al servidor MySQL" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Connexió comprimida" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Cóm connectar al servidor, deixa [kbd]tcp[/kbd] si no estàs segur" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Tipus de connexió" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Contrasenya de l'usuari de control" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4691,19 +4679,19 @@ msgstr "" "Usuari MySQL especial configurat amb permisos restringits, més informació " "disponible al [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Usuari de control" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Comptar les taules al mostrar la llista de bases de dades" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Comptar les taules" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4711,11 +4699,11 @@ msgstr "" "Deixa en blanc per desactivar el suport del Dissenyador, suggerit: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Taula del dissenyador" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4723,29 +4711,29 @@ msgstr "" "Més informació a [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] i [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desactiva l'ús d'INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "La extensió de PHP utilitzada; hauries de fer servir mysqli si ho tens " "suportat" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Extensió PHP a usar" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Amagar les bases de dades que compleixin una expresió regular (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Amagar bases de dades" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4753,43 +4741,43 @@ msgstr "" "Deixa en blanc per desactivar el suport d'historial de consultes SQL, " "suggerit: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Taula d'historial de consultes SQL" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Nom del servidor ón MySQL és en marxa" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Nom del servidor" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "URL de desconnexió" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Màxim nombre de taules mostrades a la llista" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Intentar connectar sense contrasenya" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Connexió sense contrasenya" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4803,30 +4791,30 @@ msgstr "" "entrant els seus noms en ordre i usant [kbd]*[/kbd] al final per mostrar la " "resta en ordre alfabètic." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Mostra només les bases de dades de la llista" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Deixa en blanc si no utilitzes l'autenticació config" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Contrasenya autenticació config" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "Esquema PDF: taula de pàgines" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4837,20 +4825,20 @@ msgstr "" "tenir informació més completa. Deixa en blanc per no utilitzar. Suggerit: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Nom de base de dades" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Port ón el servidor MySQL està escoltatt, deixa en blanc per al predeterminat" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Port del servidor" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4862,13 +4850,13 @@ msgstr "" "Deixa en blanc per desactivar el suport de preferències de l'usuari en base " "de dades, suggerit: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Nom d'usuari de recuperació" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4876,19 +4864,19 @@ msgstr "" "Deixa en blanc per desactivar els [a@http://wiki.phpmyadmin.net/pma/relation]" "enllaços de relacions[/a], suggerit: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Taula de relacions" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "Ordre SQL per obtenir les bases de dades disponibles" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "Ordre SHOW DATABASES" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4896,44 +4884,44 @@ msgstr "" "Consulta [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipus " "d'autenticació[/a] per veure exemples" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Nom de sessió signon" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "URL signon" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Sócol ón el servidor MySQL està escoltant, deixa en blanc per al " "predeterminat" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Sócol del servidor" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Activa SSL per la connexió amb el servidor MySQL" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Usa SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "Esquema PDF: taula de coordinades" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4941,11 +4929,11 @@ msgstr "" "Taula per descriure les columnes a mostrar, deixa en blanc per desactivar; " "suggerit: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Taula de descripció de columnes" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4957,13 +4945,13 @@ msgstr "" "Deixa en blanc per desactivar el suport de preferències de l'usuari en base " "de dades, suggerit: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Taula de preferències de l'usuari" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4971,11 +4959,11 @@ msgstr "" "Si una instrucció DROP DATABASE IF EXISTS s'afegirà com a primera línia en " "el registre a l'hora de crear una base de dades." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Afegir DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4983,11 +4971,11 @@ msgstr "" "Si una instrucció DROP TABLE IF EXISTS s'afegirà com a primera línia en el " "registre a l'hora de crear una taula." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Afegir DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4995,21 +4983,21 @@ msgstr "" "Si una instrucció DROP VIEW IF EXISTS s'afegirà com a primera línia en el " "registre a l'hora de crear una vista." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Afegir DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Defineix la llista d'instruccions que l'auto-creació fa servir per a noves " "versions." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Instruccions a seguir" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -5017,11 +5005,11 @@ msgstr "" "Deixa en blanc per desactivar el suport de seguiment de consultes SQL, " "suggerit: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Taula de seguiment de consultes SQL" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -5029,11 +5017,11 @@ msgstr "" "SI el mecanisme de seguiment crearà versions per a taules i vistes " "automàticament." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Crear versions automàticament" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -5045,15 +5033,15 @@ msgstr "" "Deixa en blanc per desactivar el suport de preferències de l'usuari en base " "de dades, suggerit: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Taula de preferències de l'usuari" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Usuari per autenticació config" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -5062,11 +5050,11 @@ msgstr "" "darrera versió. Aixó evita problemes de comprobacions de compatibilitat i " "així aumenta el rendiment" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Comprobació explicativa" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -5074,21 +5062,21 @@ msgstr "" "Descripció per a l'usuari d'aquest servidor. Deixar en blanc per mostrar el " "nom del servidor en lloc seu." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Nom explicatiu d'aquest servidor" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Si a un usuari se l'hauria de mostrar el botó "mostrar totes (les files)" """ -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Permet mostrar totes les files" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5098,27 +5086,27 @@ msgstr "" "a que la contrasenya està inclosa al arxiu de configuració; aixó no limita " "la posibilitat d'executar la mateixa ordre directament" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Mostra el formulari de canvi de contrasenya" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Mostra el formulari de creació de base de dades" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "Direcció de visualització per defecte" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -5126,29 +5114,29 @@ msgstr "" "Defineix si els tipus de camps han d'aparèixer en un principi en el mode " "d'edició/inserció" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Mostra tipus de camps" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Mostra els camps de funció en modes edició/inserció" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Mostra els camps de funció" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Mostra graella" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5156,32 +5144,32 @@ msgstr "" "Mostra l'enllaç a la sortida de [a@http://php.net/manual/function.phpinfo." "php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Mostra l'enllaç a phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Mostra informació detallada del servidor MySQL" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Defineix si s'han de mostrar les consultes SQL creades per phpMyAdmin" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Mostra consultes SQL" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Permet mostrar estadístiques de base de dades i de taula (ex. espai usat)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Mostra estadístiques" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5189,11 +5177,11 @@ msgstr "" "Si les ajudes estàn activades i s'ha establert un comentari per a la base de " "dades, alternarà el comentari i el nom real" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Mostra comentari de la base de dades en lloc del seu nom" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5205,30 +5193,30 @@ msgstr "" "['LeftFrameTableSeparator'], així només la carpeta s'anomena com l'àlies, el " "nom de la taula roman intacte" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Mostra comentari de taula en lloc del seu nom" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Mostra comentaris de taula en ajudes" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Marca les taules en ús i permet mostrar les bases de dades amb taules " "bloquejades" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Salta taules bloquejades" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Necessita activar el SQL Validator" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5238,7 +5226,7 @@ msgstr "Necessita activar el SQL Validator" msgid "Password" msgstr "Contrasenya" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5246,11 +5234,11 @@ msgstr "" "[strong]Atenció:[/strong] Necessita l'extensió de PHP SOAP o bé instal.lar " "PEAR SOAP" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Activar SQL Validator" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5258,12 +5246,12 @@ msgstr "" "Si tens un nom d'usuari, especifíca'l aqui (per defecte és [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Nom d'usuari" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5271,19 +5259,19 @@ msgstr "" "Proposa un nom de base de dades al formulari "Crear Base de Dades" " "(si es posible) o bé deixa buit el camp de text" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Proposa un nou nom de base de dades" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Si es detecta Suoshin, es mostra un avís a la pàgina principal" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "avís Suoshin" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5291,11 +5279,11 @@ msgstr "" "Tamany de textarea (columnes) en mode d'edició, aquest valor s'augmentarà " "per a textareas de consultes SQL (*2) i per finestres de consultes (*1.25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Columnes per a textareas" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5303,32 +5291,32 @@ msgstr "" "Tamany de textarea (files) en mode d'edició, aquest valor s'augmentarà per a " "textareas de consultes SQL (*2) i per finestres de consultes (*1.25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Files per a textareas" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" "Títol de la finestra del navegador quan es selecciona una base de dades" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Títol de la finestra del navegador quan no hi ha res seleccionat" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Títol per defecte" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Títol de la finestra del navegador quan es selecciona un servidor" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Títol de la finestra del navegador quan es selecciona una taula" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5340,27 +5328,27 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) procedent del proxy 1.2.3.4:[br][kbd]" "1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Llista de proxies confiables per autoritzar/prohibir IP" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Directori al servidor ón pots pujar arxius per importar" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Directori de pujades" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Permet cercar dins de tota la base de dades" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Usa cerca de base de dades" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5368,11 +5356,11 @@ msgstr "" "Quan està desactivada, els usuaris no poden configurar qualsevol de les " "següents opcions, independentment de la casella de selecció a la dreta" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Activa la pestanya del Desenvolupador en les opcions" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5382,21 +5370,21 @@ msgstr "" "multiples. Consulta libraries/import.lib.php per valors predeterminats en " "quantes consultes pot contenir una instrucció." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Mostra les instruccions multiples" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Comprova la darrera versió" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Activa la comprovació de la darrera versió a la pàgina principal de " "phpMyAdmin" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5404,7 +5392,7 @@ msgstr "" msgid "Version check" msgstr "Comprovació de versió" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5412,7 +5400,7 @@ msgstr "" "Activa la compressió [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/" "a] per a les operacions d'importació i exportació" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5432,47 +5420,47 @@ msgstr "Autenticació HTTP" msgid "Signon authentication" msgstr "autenticació Signon" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV usant LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Full de càlcul Open Document" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Ràpid" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Usuari" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcions d'exportació de bases de dades" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV per dades de MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Text format Open Document" @@ -5651,9 +5639,8 @@ msgstr "Crea una taula" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nom" @@ -6006,7 +5993,7 @@ msgid "Hide" msgstr "Amaga" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformació del navegador" @@ -6964,7 +6951,7 @@ msgstr "Comptador de columnes incorrecte en l'entrada CSV a la línia %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Nom de taula" @@ -7685,7 +7672,7 @@ msgstr "" msgid "Direction" msgstr "Enllaços directes" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Longitud/Valors*" @@ -7992,7 +7979,7 @@ msgstr "Taula de continguts" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributs" @@ -8289,7 +8276,7 @@ msgstr "La taula sembla buida!" msgid "Tracking of %s.%s is activated." msgstr "S'ha activat el seguiment de %s.%s." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8301,7 +8288,7 @@ msgstr "" "(\"\\\") o la cometa simple (\"'\") abans d'aquests valors, escriu davant " "barres invertides (per exemple '\\\\xyz' o 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8309,13 +8296,13 @@ msgstr "" "Per a valors per defecte, només entra un valor, sense barres invertides ni " "cometes, fent servir aquest format: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Índex" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8324,11 +8311,11 @@ msgstr "" "Per veure una llista d'opcions de transformació disponibles i els seus tipus " "MIME de transformació, prem a %sdescripcions de transformació%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opcions de transformació" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8340,34 +8327,34 @@ msgstr "" "apòstrof (\"'\") entre aquests valors, posa una barra invertida devant (per " "exemple '\\\\xyz' o 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "Dades ENUM o SET massa llargues?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Obté més espai d'edició" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Cap" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Com definit:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Principal" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Text sencer" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8376,25 +8363,25 @@ msgstr "" "No hi ha cap descripció disponible per a aquesta transformació.
Demana " "a l'autor qué fa %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Afegeix %s columna(es)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Has d'afegir al menys una columna." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Motor d'emmagatzematge" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Definició de PARTICIÓ" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "+ Add a new value" msgid "+ Add a value" @@ -13322,6 +13309,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horitzontal[/kbd], [kbd]vertical[/kbd] o bé un nombre que indica el " +#~ "màxim nombre per quan s'utilitza el mode vertical" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Direcció de visualització per modificació/creació de columnes" + #~ msgid "Create table on database %s" #~ msgstr "Crear una taula nova a la base de dades %s" diff --git a/po/cs.po b/po/cs.po index cf7f3a0778..b1b75c16ca 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-19 13:15+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" @@ -69,7 +69,7 @@ msgstr "Vyhledávání" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -132,7 +132,7 @@ msgid "Database comment: " msgstr "Komentář k databázi: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Komentář k tabulce" @@ -142,7 +142,7 @@ msgstr "Komentář k tabulce" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -158,7 +158,7 @@ msgstr "Pole" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -170,7 +170,7 @@ msgstr "Typ" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -181,7 +181,7 @@ msgstr "Nulový" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Výchozí" @@ -195,13 +195,13 @@ msgid "Links to" msgstr "Odkazuje na" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Komentáře" @@ -315,14 +315,14 @@ msgstr "Jen data" msgid "CREATE DATABASE before copying" msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Přidat %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" @@ -337,8 +337,8 @@ msgstr "Přepnout na zkopírovanou databázi" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -359,7 +359,7 @@ msgid "Edit or export relational schema" msgstr "Upravit nebo exportovat relační schéma" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -671,7 +671,7 @@ msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -733,7 +733,7 @@ msgstr "Datový slovník" msgid "Tracked tables" msgstr "Sledované tabulky" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -808,12 +808,12 @@ msgstr "Sledovat tabulku" msgid "Database Log" msgstr "Historie databáze" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Hodnoty pro pole „%s“" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Zadejte každou hodnotu do samostatného políčka." @@ -1137,7 +1137,7 @@ msgstr "Načítám oprávnění" msgid "Removing Selected Users" msgstr "Odstraňuji vybrané uživatele" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Ukončit" @@ -1145,7 +1145,7 @@ msgstr "Ukončit" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Upravit" @@ -1360,7 +1360,7 @@ msgstr "Prosím přidejte do série alespoň jednu hodnotu" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1582,7 +1582,7 @@ msgstr "" "Selhalo vytvoření grafu z importované konfigurace. Používám místo ní výchozí " "nastavení." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1625,7 +1625,7 @@ msgstr "Použitá proměnná / vzorec" msgid "Test" msgstr "Test" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1752,7 +1752,7 @@ msgstr "Doba běhu dotazu" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2271,7 +2271,7 @@ msgstr "Není definován žádný index!" msgid "Indexes" msgstr "Indexy" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2309,7 +2309,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2617,18 +2617,18 @@ msgid "shared" msgstr "sdílený" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabulky" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2704,7 +2704,7 @@ msgstr "Chybný index serveru: „%s“" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2776,7 +2776,7 @@ msgstr "MySQL hlásí: " msgid "Failed to connect to SQL validator!" msgstr "Nepodařilo se připojit k serveru kontrolujícímu SQL!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Vysvětlit SQL" @@ -2788,11 +2788,11 @@ msgstr "Bez vysvětlení SQL" msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Vytvořit PHP kód" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Obnovit" @@ -2801,7 +2801,7 @@ msgstr "Obnovit" msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Zkontrolovat SQL" @@ -2905,20 +2905,20 @@ msgid "Click to toggle" msgstr "Klikněte pro přepnutí" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3117,7 +3117,7 @@ msgid "Set value: %s" msgstr "Nastavena hodnota: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Obnovit výchozí hodnotu" @@ -3281,66 +3281,54 @@ msgid "Default display direction" msgstr "Výchozí směr zobrazování" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] nebo číslo udávající pro jaký " -"maximální počet bude použito vertikální zobrazení" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Směr zobrazení pro měnění a vytváření polí" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Panel, který je zobrazen při přístupu k databázi" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Výchozí panel databáze" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Panel, který je zobrazen při přístupu k serveru" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Výchozí panel serveru" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Panel, který je zobrazen při přístupu k tabulce" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Výchozí panel tabulky" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Zobrazení binárního obsah šestnáctkově (HEX) jako výchozí" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Zobrazit binární obsah šestnáctkově (HEX)" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Zobrazit přehled databází jako seznam namísto rozbalovacího menu" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Zabrazit databáze jako seznam" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Zobrazit přehled serverů jako seznam namísto rozbalovacího menu" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Zobrazit servery jako seznam" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3348,35 +3336,35 @@ msgstr "" "Vypne hromadné operace pro údržbu tabulke jako optimalizaci nebo opravu " "vybraných tabulek z databáze." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Vypnout hromadné operace s tabulkami" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Upravovat SQL dotazy v samostatném okně" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Upravovat v okně" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Zobrazit chyby" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Sbírat chyby" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Zobrazit ikony pro varování, chyby a informační zprávy" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Chyby s ikonami" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3384,205 +3372,205 @@ msgstr "" "Zadejte počet sekund, po které může skript běžet ([kbd]0[/kbd] pro žádná " "omezení)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Časový limit běhu skriptu" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Uložit jako soubor" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Znaková sada souboru" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formát" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Komprese" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Přidat jména polí na první řádek" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Pole uzavřené do" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Pole escapována" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Nahradit NULL hodnoty" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Odstranit znaky konců řádek z polí" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Pole oddělené" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Řádky ukončené" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Verze Excelu" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Vzor pro jméno databáze" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Vzor pro jméno serveru" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Vzor pro jméno tabulky" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Vypsat tabulku" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Použít titulek tabulky" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Titulek tabulky" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Titulek pokračování tabulky" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Návěstí" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME typ" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relace" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Způsob exportu" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Uložit na server" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Přepsat existující soubory" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Pamatovat si vzor pro jména souborů" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Použít zpětné uvozovky u jmen tabulek a polí" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "Parametry CREATE TABLE:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Datum vytvoření, poslední změny a kontroly" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Používat zpožděné inserty" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Vypnout kontrolu cizích klíčů" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Použít šestnáctkové zobrazení pro BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Použít IGNORE" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Jakou syntaxi použít pro vkládání dat" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maximální velikost vytvořeného dotazu" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Typ exportu" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Uzavřít příkazy v transakci" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Exportovat čas v UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Vynutit zabezpečené spojení při použití phpMyAdmina" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Vynutit SSL spojení" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3590,149 +3578,149 @@ msgstr "" "Pořadí řazení položek v rozbalovací nabídce cizích klíčů; [kbd]obsah[/kbd] " "jsou referenční data, [kbd]id[/kbd] je hodnota klíče" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Pořadí cizích klíčů v rozbalovací nabídce" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" "Rozbalovací nabídka bude použita pokud je přítomno menší množství položek" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Nejvyšší počet cizích klíčů" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Režim prohlížení" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Přizpůsobí režim prohlížení" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Přizpůsobí výchozí nastavení" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Pro vývojáře" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Nastavení pro vývojáře phpMyAdmina" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Režim úprav" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Přizpůsobí režim úprav" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Výchozí nastavení exportu" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Přizpůsobí výchozí nastavení exportu" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funkce" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Obecné" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Nejčastěji používaná nastavení" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Výchozí nastavení importu" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Přizpůsobí výchozí nastavení importu" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Import / export" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Nastaví adresáře pro import a export a volby komprese" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Nastavení zobrazení databází" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigační rám" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Přizpůsobí vzhled navigačního rámu" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servery" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Nastavení zobrazení serverů" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Nastavení zobrazení tabulek" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Hlavní rám" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Jiná důležitá nastavení" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Nastavení, která nelze zařadit jinam" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Jména stránek" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3741,22 +3729,22 @@ msgstr "" "Zadejte titulek který zobrazí prohlížeč. V [a@Documentation." "html#cfg_TitleTable]dokumentaci[/a] naleznete jaké proměnné můžete použít." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Okno dotazů" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Přizpůsobit nastavení okna dotazů" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Zabezpečení" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3764,38 +3752,38 @@ msgstr "" "Prosíme, vemte v potaz, že phpMyAdmin je pouze uživatelské rozhraní a jeho " "funkce neomezují MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Základní nastavení" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Přihlašování" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Nastavení přihlašování" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Nastavení serveru" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" "Pokročilé nastavení serveru, neměňte tyto volby, pokud nevíte, čeho se týkají" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Vložte parametry připojení k serveru" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Úložiště konfigurace" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3805,11 +3793,11 @@ msgstr "" "dodatečným funkcím, viz sekce [a@Documentation.html#linked-tables]úložiště " "nastavení phpMyAdmina[/a] v dokumentaci" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Sledování změn" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3817,44 +3805,44 @@ msgstr "" "Sledování změn provedených v databazí. Vyžaduje nastavené úložiště nastavení " "phpMyAdmina." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Přizpůsobení exportu" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Přizpůsobení výchozího nastavení importu" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Přizpůsobení navigačního rámu" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Přizpůsobení hlavního rámu" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL dotazy" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Políčko pro SQL dotazy" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Přizpůsobení odkazů zobrazených v políčcích pro SQL dotazy" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Nastavení SQL dotazů" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "Kontrolování SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3866,43 +3854,43 @@ msgstr "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. Všechna práva vyhrazena.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Úvodní stránka" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Přizpůsobení úvodní stránky" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Panely" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Nastaví, jak mají fungovat panely" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Textová pole" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Přizpůsobení textových polí" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Varování" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Vypnout některá varování zobrazovaná phpMyAdminem" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3910,15 +3898,15 @@ msgstr "" "Povolí [a@http://cs.wikipedia.org/wiki/Gzip]gzip[/a] kompresi pro " "importování a exportování" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Další parametry pro iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3926,11 +3914,11 @@ msgstr "" "Pokud je povoleno, PMA pokračuje ve zpracování víceprvkových dotazů, i když " "jeden z nich selhal" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignorovat chyby ve víceprvkových dotazech" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3940,21 +3928,21 @@ msgstr "" "časového limitu. Tento způsob může být vhodný pro import velkých souborů, " "ovšem může poškodit transakce." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Častečný import: povolit přerušení" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Nepřerušit při chybě v příkazu INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Přepsat data tabulky souborem" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3962,88 +3950,88 @@ msgstr "" "Výchozí formát; vemte v potaz, že toto závisí na umístění (databáze, " "tabulka) a pouze SQL je vždy dostupný" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Formát importovaného souboru" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Použít klíčové slovo LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Jména polí na prvním řádku" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Neimportovat prázdné řádky" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importovat měny (5.00 místo $5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importovat procenta jako desetinná čísla (0.12 místo 12.00%)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Počet dotazů od začátku, které se mají přeskočit" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Částečný import: přeskočit dotazy" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Počáteční stav pro rozbalovací pole" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Kolik řádků může být vloženo naráz" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Počet vkládaných řádků" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Cíl pro ikonu rychlého přístupu" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Zobrazí logo v levém rámu" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Zobrazit logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Zobrazí volbu serveru v horní části levého rámu" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Zobrazit výběr serverů" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Minimální počet tabulek pro zobrazení filtru tabulek" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Řetězec, který rozděluje databáze do různých pater stromu" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Oddělovač databázového stromu" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4051,39 +4039,39 @@ msgstr "" "Pouze pro odlehčenou verzi; zobrazí databáze jako strom (určeno oddělovačem " "nastaveným níže)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Stromový pohled na databáze" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Tuto volbu zakažte, pokud chcete vidět všechny databáze najednou" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Použít odlehčenou verzi" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Nejvyšší počet pater tabulkového stromu" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Řetězec, který rozděluje tabulky do různých pater stromu" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Oddělovač tabulkovýho stromu" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL na které bude odkazovat logo v navigačním rámu" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "URL odkazu loga" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4091,45 +4079,45 @@ msgstr "" "Zda se má odkazovaná stránka otevřít v hlavním okně ([kbd]hlavní[/kbd]) nebo " "v novém ([kbd]nové[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Cíl odkazu loga" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Zvýrazní server pod kurzorem myši" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Povolit zvýrazňování" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" "Nejvyšší počet tabulek v seznamu nedávných tabulek; nastavte 0 pro vypnutí" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Nedávno použité tabulky" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Použije graficky méně náročné panely" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Odlehčené panely" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "Nejvyšší počet znaků zobrazeních v nečíselných polích při procházení" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Omezení počtu znaků" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4140,11 +4128,11 @@ msgstr "" "Zakázání může způsobit, že se zapomenete odhlásit od ostatních serverů, " "pokud jich používáte více." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Smazat všechny cookies při odhlášení" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4152,11 +4140,11 @@ msgstr "" "Určuje, zda se má pamatovat předchozí přihlášení, při použití přihlašování " "pomocí cookies" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Pamatovat si uživatelské jméno" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4168,53 +4156,53 @@ msgstr "" "sezení, čili, že bude smazána v okamžiku, kdy zavřete okno prohlížeče. Tato " "volba je doporučena pro nedůvěryhodná prostředí." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Uložení přihlašovací cookie" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Určuje, jak dlouho (v sekundách) je přihlašovací cookie platná" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Platnost přihlašovací cookie" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Zdvojnásobit velikost editačního pole pro sloupec typu LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Větší editační pole pro LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Zobrazit ikony na hlavní stránce" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Nejvyšší počet znaků SQL dotazu, které se ještě zobrazí" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Nejvyšší délka zobrazeného SQL dotazu" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Uživatelé nemohou nastavit větší hodnotu" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Nejvyšší počet databází zobrazovaných v levém rámu a v seznamu databází" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Nejvyšší počet databází" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4224,19 +4212,19 @@ msgstr "" "množina výsledků delší, zobrazí se odkazy "Předchozí" a "" "Další"." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Nejvyšší počet zobrazených řádků" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Nejvyšší počet tabulek zobrazených v seznamu tabulek" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Nejvyšší počet zobrazených tabulek" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4244,11 +4232,11 @@ msgstr "" "Vypne varování o chybějícím rozšíření mcrypt při použití přihlašování přes " "cookies" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "Varování o mcrypt" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4256,43 +4244,43 @@ msgstr "" "Počet bytů, které si může skript alokovat, např. [kbd]32M[/kbd] ([kbd]0[/" "kbd] ruší omezení)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Omezení paměti" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "Jedná se o odkazy Upravit, Kopírovat a Odstranit" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Kde zobrazit odkazy s akcemi při procházení" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Použít přirozené řazení pro jména tabulek a databází" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Přirozené pořadí" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Zda se mají zobrazit pouze ikony, nebo pouze text, případně obojí" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Ikony v navigační liště" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Použije mezipaměť pro GZip výstup, čímž zvýší rychlost HTTP přenosů" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Mezipaměť pro GZip výstup" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4300,19 +4288,19 @@ msgstr "" "[kbd]SMART[/kbd] - t.j. řazení sestupně pro pole typu TIME, DATE, DATETIME a " "TIMESTAMP, v ostatních případech se použije vzestupné řazení" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Výchozí pořadí řazení" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Použije trvalé připojení k MySQL databázi" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Trvalé připojení" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4321,23 +4309,23 @@ msgstr "" "Vypne varování o nekompletních relacích na stránce s detaily databáze pokud " "chybí jakákoliv tabulka z úložiště nastavení phpMyAdmina" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Zobrazení ikon pro operace s tabulkami" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Zakáže úpravu polí BLOB a BINARY" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Chránit binární pole" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4347,119 +4335,119 @@ msgstr "" "nastavení phpMyAdmina). Pokud toto zakážete, využijí se k zobrazení historie " "Java Scriptové rutiny (se zavřením okna ztratíte předchozí historii)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Nepřetržitá historie dotazů" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Kolik dotazů se má držet v historii" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Délka historie dotazů" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Panel zobrazený při otevření nového okna dotazů" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Výchozí panel okna dotazů" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Výška okna dotazů (v pixelech)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Výška okna dotazů" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Šířka okna dotazů (v pixelech)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Šířka okna dotazů" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Vybere, které funkce budou použity pro konverzi znakových sad" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Nástroje pro konverzi znakových sad" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "Při procházení tabulek se pro každou uloží nastavené řazení" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Pamatovat si řazení u tabulkek" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Zopakovat záhlaví každých X buněk, [kbd]0[/kbd] vypne tuto funknci" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Opakovat záhlaví" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Zobrazit ikonu pro nápovědu místo textu Dokumentace" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Zobrazit ikonu pro nápovědu" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "Uložit všechny upravené buňky najednou" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Adresář na serveru pro ukládání exportů" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Adresář pro ukládání" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Pokud tuto volbu nepoužíváte, nechte ji prázdnou" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Pořadí ověřování hostitelů" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Nechte volbu prázdnou pro výchozí nastavení" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Pravidla ověřování hostitelů" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Povolit přihlášení bez hesla" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Povolit přihlašování uživatele root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "Název pro zobrazení při HTTP přihlašování" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP doméma" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4469,19 +4457,19 @@ msgstr "" "přihlašování SweKey[/a] (Není umístěna ve Vašem kořenovém adresáři " "dokumentů; Doporučení: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "Konfigurační soubor SweKey" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Která přihlašovací metoda se má použít" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Typ přihlašování" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4490,11 +4478,11 @@ msgstr "" "phpmyadmin.net/pma/bookmark]záložek[/a], výchozí nastavení: [kbd]" "pma_bookmarks[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Tabulka záložek" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4502,32 +4490,32 @@ msgstr "" "Nechte prázdné pro žádné komentáře či mime typy polí, výchozí nastavení: " "[kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Tabulka informací o polích" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Zda se má komprimovat připojení k MySQL serveru" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Komprimovat připojení" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Jak se připojit k serveru, ponechte [kbd]tcp[/kbd] pokud si nejste jistí" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Typ připojení" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Heslo kontrolního uživatele" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4535,19 +4523,19 @@ msgstr "" "Zvláštní MySQL uživatel s omezenými právy, více informací na [a@http://wiki." "phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Kontrolní uživatel" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Zda počítat tabulky, když se zobrazuje seznam databází" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Počítat tabulky" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4555,11 +4543,11 @@ msgstr "" "Nechte prázné pro vypnutí návrháře, výchozí nastavení: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Tabulka návrháře" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4567,27 +4555,27 @@ msgstr "" "Více informací v [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "trackeru[/a] a [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Zakázat použití INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Které rozšíření PHP se má použít, použijte mysqli, pokud je to možné" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Použít rozšíření PHP" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Skrýt databáze odpovídající regulárnímu výrazu (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Skrýt databáze" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4595,41 +4583,41 @@ msgstr "" "Nechte prázné pro vypnutí SQL historie, výchozí hodnota [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Tabulka pro historii SQL dotazů" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Jméno počítače, kde běží MySQL server" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Jméno serveru" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "URL pro odhlášení" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Nejvyšší počet záznamů uložený v tabulkce „table_uiprefs“" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Pokusit se připojit bez hesla" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Připojit bez hesla" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4642,30 +4630,30 @@ msgstr "" "Použitím této volby můžete také změnit pořadí databází, stačí na konci " "seznamu uvést [kbd]*[/kbd] pro zobrazní ostatních v abecedním pořadí." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Zobrazit jen vybrané databáze" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Nechte prázdné, pokud nepoužíváte přihlašování config" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Heslo pro přihlašování config" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]" "pma_table_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF schémata: tabulka stránek" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4676,20 +4664,20 @@ msgstr "" "ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Jméno databáze" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Port na kterém poslouchá MySQL server, nechte prázné pro výchozí hodnotu" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Port serveru" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4697,11 +4685,11 @@ msgstr "" "Nechte prázdné pro vypnutí „trvalého“ ukládání nedávných tabulek, výchozí " "nastavení: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Naposledy použité tabulky" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4709,19 +4697,19 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro [a@http://wiki.phpmyadmin.net/pma/" "relation]relace[/a], výchozí nastavení: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Tabulka s relacemi" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "SQL příkaz pro načtení dostupných databází" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "Příkaz SHOW DATABASES" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4729,43 +4717,43 @@ msgstr "" "Příklad můžete nalézt na [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "authentication types[/a]" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Jméno signon session" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "URL pro přihlášení" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Socket na kterém poslouchá MySQL server, nechte prázné pro výchozí hodnotu" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Socket serveru" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Zda se má použít SSL pro připojení k MySQL serveru" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Použít SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF schéma: tabulka souřadnic" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4773,11 +4761,11 @@ msgstr "" "Tabulka obsahující popisy polí, nechte prázdnou pro vypnutí této funkce. " "Výchozí hodnota: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Tabulka s popisem polí" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4785,11 +4773,11 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro „trvalé“ ukládání nastavení " "procházení tabulek, výchozí nastavení: [kbd]pma_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Tabulka pro nastavení rozhraní" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4797,43 +4785,43 @@ msgstr "" "Jestli přidat příkaz DROP DATABASE IF EXISTS jako první při vytváření " "databáze." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Přidat DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" "Jestli přidat příkaz DROP TABLE IF EXISTS jako první při vytváření tabulky." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Přidat DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" "Jestli přidat příkaz DROP VIEW IF EXISTS jako první při vytváření pohledu." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Přidat DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Určuje seznam příkazů které se automaticky používají pro vytvoření nových " "verzí." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Sledované příkazy" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4841,22 +4829,22 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro sledování SQL dotazů, výchozí " "nastavení: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Tabulka pro sledování SQL dotazů" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" "Jestli má sledování tabulek automaticky vytvářet verze pro tabulky a pohledy." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Automaticky vytvářet verze" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" @@ -4864,15 +4852,15 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro uživatelské nastavení v databázi, " "výchozí nastavení: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Tabulka pro uživatelská nastavení" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Uživatel pro přihlašování config" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4880,30 +4868,30 @@ msgstr "" "Vypněte, pokud víte, že vaše tabulky pma_* jsou v pořádku. Tím zabráníte " "kontrolám kompatibility a urychlíte zobrazování stránek" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Podrobná kontrola" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" "Přívětivý popis tohoto serveru. Pokud necháte prázné, zobrazí se jeho jméno." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Dlouhé jméno tohoto serveru" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Jestli uživateli bude zobrazeno tlačítko "Zobrazit vše"" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Umožní zobrazit všechny řádky" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4914,53 +4902,53 @@ msgstr "" "neomezuje možnost spustit daný příkaz přímo, jen ovlivňuje zobrazení " "formuláře" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Zobrazit formulář pro změnu hesla" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Zobrazit formulář pro vytvoření databáze" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" "Určuje, zda se má zobrazit volba směru vypisování při procházení tabulky" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Zobrazit volbu směru vypisování" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" "Určuje, jestli mají být zobrazeny typy polí při úpravě a vkládání záznamů" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Zobrazit typy polí" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Zobrazí seznam funkcí v editačním režimu" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Zobrazit seznam fukncí" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "Zda zobrazit nápovědu nebo ne" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "Zobrazit nápovědu" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4968,32 +4956,32 @@ msgstr "" "Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Zobrazit odkaz na phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Zobrazí podrobné informace o MySQL serveru" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Určuje, jestli SQL dotazy vytvořené phpMyAdminem budou zobrazeny" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Zobrazit SQL dotazy" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Povolí zobrazení statistik (např. použití místa) pro databáze a tabulky" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Zobrazit statistiky" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5001,11 +4989,11 @@ msgstr "" "Pokud jsou povoleny tooltipy a je nastaven komentář databáze, tato volba " "prohodí komentář a skutečné jméno" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Zobrazit komentář databáze místo jména" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5016,29 +5004,29 @@ msgstr "" "rozdělení podle nastavení $cfg['LeftFrameTableSeparator']. Takže komentář se " "použije jen pro zanoření, ale jména tabulek zůstanou nezměněná" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Zobrazit komentář tabulky místo jména" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Zobrazit komentáře tabulky v tooltipu" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Označí používané tabulky a umožní zobrazit databáze se zamčenými tabulkami" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Přeskočit zamčené tabulky" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Vyžaduje povolené kontrolování SQL" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5048,18 +5036,18 @@ msgstr "Vyžaduje povolené kontrolování SQL" msgid "Password" msgstr "Heslo" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" "[strong]Varování:[/strong] vyžaduje rozšíření PHP SOAP nebo PEAR modul SOAP" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Povolit kontrolování SQL" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5067,12 +5055,12 @@ msgstr "" "Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Uživatel" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5080,20 +5068,20 @@ msgstr "" "Navrhne jméno nové databáze ve formuláři pro vytváření databáze (pokud je to " "možné) nebo ponechá pole prázné" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Navrhnout jméno nové databáze" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Na hlavní stránce je zobrazeno varování pokud je detekování rozšíření Suhosin" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Varování o Suhosinu" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5101,11 +5089,11 @@ msgstr "" "Velikost editačního pole (počet sloupců), tato hodnota bude navýšena pro SQL " "dotazy (*2) a pro dotazové okno (*1,25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Sloupců v textové oblasti" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5113,31 +5101,31 @@ msgstr "" "Velikost editačního pole (počet řádek), tato hodnota bude navýšena pro SQL " "dotazy (*2) a pro dotazové okno (*1,25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Řádků v textové oblasti" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Titulek prohlížeče pokud je vybraná databáze" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Titulek prohlížeče pokud není nic vybráno" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Výchozí titulek" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Titulek prohlížeče pokud je vybraný server" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Titulek prohlížeče pokud je vybraná tabulka" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5149,27 +5137,27 @@ msgstr "" "Forwarded-For) přicházející od proxy 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Seznam důvěryhodných proxy pro ověření IP adresy" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Adresář na serveru, kam můžete nahrát souboru pro import" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Adresář pro nahrávání" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Povolit prohledávání přes celou databázi" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Použít prohledávání databáze" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5177,11 +5165,11 @@ msgstr "" "Pokud je vypnuto, uživatelé nemůžou změnit žádná z níže uvedených nastavení, " "bez ohledu na zaškrtávátko napravo" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Povolit záložku Pro vývojáře v nastaveních" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5191,19 +5179,19 @@ msgstr "" "souboru libraries/import.lib.php naleznete kolik dotazů můžete najednou " "zadat." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Podrobné víceprvkové dotazy" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Zkontrolovat nejnovější verzi" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Povolí kontrolu poslední verze phpMyAdmina na hlavní stránce" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5211,7 +5199,7 @@ msgstr "Povolí kontrolu poslední verze phpMyAdmina na hlavní stránce" msgid "Version check" msgstr "Kontrola verze" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5219,7 +5207,7 @@ msgstr "" "Povolí [a@http://cs.wikipedia.org/wiki/ZIP_(souborový_formát)]ZIP[/a] " "kompresi pro import a export" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5239,47 +5227,47 @@ msgstr "Přihlašování přes HTTP" msgid "Signon authentication" msgstr "Přihlašování signon" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV pomocí LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Sešit OpenDocument" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Rychlý" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Vlastní" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Nastavení exportu databází" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV pro MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Text OpenDocument" @@ -5452,9 +5440,8 @@ msgstr "Vytvořit tabulku" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Název" @@ -5797,7 +5784,7 @@ msgid "Hide" msgstr "Skrýt" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformace při prohlížení" @@ -6723,7 +6710,7 @@ msgstr "Chybný počet polí v CSV datech na řádku %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Jméno tabulky" @@ -7409,7 +7396,7 @@ msgstr "Parametry" msgid "Direction" msgstr "Směr" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Délka/Množina" @@ -7668,7 +7655,7 @@ msgstr "Obsah" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Vlastnosti" @@ -7963,7 +7950,7 @@ msgstr "Tabulka se zdá být prázdná!" msgid "Tracking of %s.%s is activated." msgstr "Sledování pro %s.%s je zapnuté." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7975,7 +7962,7 @@ msgstr "" "nebo jednoduché uvozovky („'“) mezi těmito hodnotami, napište před ně zpětné " "lomítko (příklad: '\\\\xyz' nebo 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -7983,13 +7970,13 @@ msgstr "" "Výchozí hodnotu zadejte jen jednu hodnotu bez uvozovek a escapování znaků, " "například: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Index" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -7998,11 +7985,11 @@ msgstr "" "Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" "spopisy transformací%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Parametry transformace" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8014,34 +8001,34 @@ msgstr "" "(„'“) mezi těmito hodnotami, vložte před ně zpětné lomítko (například '\\" "\\xyz' nebo 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "Příliš mnoho dat ENUM nebo SET?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Získejte více místa pro editaci" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Žádná" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Dle zadání:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primární" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Fulltext" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8050,25 +8037,25 @@ msgstr "" "Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %" "s dělá." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Přidat %s polí" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Musíte přidat alespoň jedno pole." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Úložiště" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Definice PARTITION" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Přidat hodnotu" @@ -12832,6 +12819,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] nebo číslo udávající pro jaký " +#~ "maximální počet bude použito vertikální zobrazení" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Směr zobrazení pro měnění a vytváření polí" + #~ msgid "Create table on database %s" #~ msgstr "Vytvořit novou tabulku v databázi %s" diff --git a/po/cy.po b/po/cy.po index 167e5d0b02..91c48cec86 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" @@ -69,7 +69,7 @@ msgstr "Chwilio" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -133,7 +133,7 @@ msgid "Database comment: " msgstr "Sylw cronfa ddata:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Sylwadau tabl" @@ -143,7 +143,7 @@ msgstr "Sylwadau tabl" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -159,7 +159,7 @@ msgstr "Colofn" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -171,7 +171,7 @@ msgstr "Math" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -182,7 +182,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Diofyn" @@ -196,13 +196,13 @@ msgid "Links to" msgstr "Cysylltu i" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Sylwadau" @@ -316,14 +316,14 @@ msgstr "Data yn unig" msgid "CREATE DATABASE before copying" msgstr "Defnyddiwch CREATE DATABASE cyn copïo" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Ychwanegwch %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" @@ -338,8 +338,8 @@ msgstr "Newidiwch i'r gronfa ddata a gopïwyd" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,7 +360,7 @@ msgid "Edit or export relational schema" msgstr "Golygu neu allforio sgema perthynol" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -675,7 +675,7 @@ msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -739,7 +739,7 @@ msgstr "Geiriadur Data" msgid "Tracked tables" msgstr "Tablau a draciwyd" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -814,12 +814,12 @@ msgstr "Tracio tabl" msgid "Database Log" msgstr "Log cronfa ddata" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1168,7 +1168,7 @@ msgstr "Dim Breintiau" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Cau" @@ -1176,7 +1176,7 @@ msgstr "Cau" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Golygu" @@ -1420,7 +1420,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1650,7 +1650,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1701,7 +1701,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1866,7 +1866,7 @@ msgstr "Gweithrediad SQL" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2399,7 +2399,7 @@ msgstr "Dim indecs wedi'i ddiffinio!" msgid "Indexes" msgstr "Indecsau" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2437,7 +2437,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2751,18 +2751,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tablau" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2839,7 +2839,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2913,7 +2913,7 @@ msgstr "Dywedodd MySQL:" msgid "Failed to connect to SQL validator!" msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Esbonio SQL" @@ -2925,11 +2925,11 @@ msgstr "Sgipio Esbonio SQL" msgid "Without PHP Code" msgstr "Heb God PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Creu Cod PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Adfywio" @@ -2938,7 +2938,7 @@ msgstr "Adfywio" msgid "Skip Validate SQL" msgstr "Sgipio Dilysu SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Dilysu SQL" @@ -3054,20 +3054,20 @@ msgid "Click to toggle" msgstr "Pwyso i ddewis" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Strwythur" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3279,7 +3279,7 @@ msgid "Set value: %s" msgstr "Gosod gwerth: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Adfer gwerth diofyn" @@ -3430,201 +3430,191 @@ msgid "Default display direction" msgstr "Colofn dangosydd perthynol" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Tab a ddengys wrth fyned i dabl" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Tab tabl diofyn" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Dangos cynnwys deuaidd fel HEX" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Dangos cynnwys deuaidd fel HEX" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Dangos cronfeydd data fel rhestr" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Dangos gweinyddion fel rhestr" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Partition maintenance" msgid "Disable multi table maintenance" msgstr "Cynhaliaeth ymraniadau" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Golygu'r rhes nesaf" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display columns table" msgid "Display errors" msgstr "Dangos tabl colofnau" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Cadw fel ffeil" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Set nodau y ffeil" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Fformat" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Cywasgiad" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Rhoi enwau colofnau yn y rhes gyntaf" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Amgaewyd colofnau gan" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Colofnau wedi'u dianc gan" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Amnewid NULL gan" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 #, fuzzy #| msgid "Remove CRLF characters within columns" msgid "Remove CRLF characters within columns" msgstr "Tynnu nodau CRLF tu fewn colofnau" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Terfynwyd colofnau gan" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Terfynwyd llinellau gan" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Argraffiad Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Templed enw cronfa ddata" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Templed enw gweinydd" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Templed enw tabl" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3633,395 +3623,395 @@ msgstr "Templed enw tabl" msgid "Dump table" msgstr "%s tabl" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Cynnwys pennawd y tabl" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Pennawd y tabl" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 #, fuzzy #| msgid "Include table caption" msgid "Continued table caption" msgstr "Cynnwys pennawd y tabl" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Allwedd y label" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Math MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Perthnasau" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Math allbwn" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Cadw ar y gweinydd" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Trosysgrifo ffeil(iau) sy'n bodoli yn barod" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Cofio templed enw ffeil" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Modd cytunedd SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Allforio" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy #| msgid "Query results operations" msgid "Customize default options" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Nodweddion" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generadu" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Ffrâm llywio" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Gweinyddion" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Prif ffrâm" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Testun Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page name" msgid "Page titles" msgstr "Enw'r dudalen" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Authenticating..." msgid "Authentication" msgstr "Yn dilysu..." -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy #| msgid "Authenticating..." msgid "Authentication settings" msgstr "Yn dilysu..." -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy #| msgid "Show SQL queries" msgid "SQL queries settings" msgstr "Dangos ymholiadau SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "Skip Validate SQL" msgid "SQL Validator" msgstr "Sgipio Dilysu SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4029,289 +4019,289 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "Defnyddiwch faes testun" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Rhybudd" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put columns names in the first row" msgid "Column names in first row" msgstr "Rhoi enwau colofnau yn y rhes gyntaf" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Nifer yr ymholiadau i'w neidio o'r dechrau" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Tablau heb dracio " -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4319,440 +4309,440 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Ailenwi tabl i" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Trwsio edafedd" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Cyfrifwch y tablau" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Estyniad PHP i'w ddefnyddio" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Cuddio cronfeydd data sydd yn cydweddu â mynegiant arferol (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Cuddio cronfeydd data" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Tabl hanes ymholiadau SQL" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Enw'r gwesteiwr ble mae'r gweinydd MySQL yn rhedeg" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Enw gwesteiwr y gweinydd" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "URL allgofnodi" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Ceisiwch â chysylltu heb gyfrinair" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Cysylltwch heb gyfrinair" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -4768,295 +4758,295 @@ msgstr "" "ydych am eu defnyddio'n llythrennol, h.y. defnyddiwch 'my\\_db' ac nid " "'my_db'" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Dangoswch gronfeydd data a restrir yn unig" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Gadewch yn wag os nac ydych yn defnyddio 'config auth'" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Cyfrinair am 'config auth'" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "enw cronfa ddata" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Dadansoddi tabl" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Soced gweinydd" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Defnyddio SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "Sgena PDF: cyfesurynnau tabl" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Dangos tabl colofnau" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Ychwanegu DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Ychwanegu DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Ychwanegu DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Datganiadau i'w tracio" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Tabl tracio ymholiadau SQL" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Dangos ffurflen newid cyfrinair" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Dangos ffurflen creu cronfa ddata" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Relational display column" msgid "Show display direction" msgstr "Colofn dangosydd perthynol" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show function fields" msgid "Show field types" msgstr "Dangos meysydd swyddogaeth" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Dangos meysydd swyddogaeth" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Dangos grid" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5064,41 +5054,41 @@ msgstr "" "Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Dangos cysylltiad i phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Dangos ymholiadau SQL" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Dangos ystadegau" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5106,28 +5096,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Neidio tablau ar glo" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5137,90 +5127,90 @@ msgstr "" msgid "Password" msgstr "Cyfrinair" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Enw defnyddiwr" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Tab tabl diofyn" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5228,56 +5218,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Cyfeiriadur lanlwytho" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Defnyddio chwiliad cronfa ddata" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Gwiriwch y fersiwn diweddaraf" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5285,13 +5275,13 @@ msgstr "" msgid "Version check" msgstr "Gwirio fersiwn" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5319,51 +5309,51 @@ msgstr "Yn dilysu..." msgid "Signon authentication" msgstr "Yn dilysu..." -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Taenlen Open Document" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Lliw cwstwm" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Databases statistics" msgid "Database export options" msgstr "Ystadegau cronfeydd data" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV ar gyfer MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Testun Open Document" @@ -5536,9 +5526,8 @@ msgstr "Crëwch dabl" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Enw" @@ -5917,7 +5906,7 @@ msgid "Hide" msgstr "Cuddio" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Trawsffurfiad porwr" @@ -6798,7 +6787,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7499,7 +7488,7 @@ msgstr "" msgid "Direction" msgstr "Cysylltiadau uniongyrchol" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "" @@ -7797,7 +7786,7 @@ msgstr "Tabl cynnwys" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "" @@ -8085,7 +8074,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8093,30 +8082,30 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indecs" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8124,59 +8113,59 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Dim" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Fel a ddiffiniwyd:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Cynradd" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Testunllawn" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Ychwanegwch %s colofn" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Rydych chi wedi ychwanegu o leiaf un golofn." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Peiriant Storio" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Diffiniad PARTITION" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new server" msgid "+ Add a value" diff --git a/po/da.po b/po/da.po index 27d5292b6e..2faf28e6d0 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-25 23:05+0200\n" "Last-Translator: Jørgen Thomsen \n" "Language-Team: danish \n" @@ -66,7 +66,7 @@ msgstr "Søg" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -129,7 +129,7 @@ msgid "Database comment: " msgstr "Databasekommentar: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Tabel kommentarer" @@ -139,7 +139,7 @@ msgstr "Tabel kommentarer" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -155,7 +155,7 @@ msgstr "Kolonnenavn" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -167,7 +167,7 @@ msgstr "Datatype" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -178,7 +178,7 @@ msgstr "Nulværdi" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Standardværdi" @@ -192,13 +192,13 @@ msgid "Links to" msgstr "Linker til" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Kommentarer" @@ -312,14 +312,14 @@ msgstr "Kun data" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Tilføj %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" @@ -334,8 +334,8 @@ msgstr "Skift til den kopierede database" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -355,7 +355,7 @@ msgid "Edit or export relational schema" msgstr "Editer eller eksporter relations skema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -664,7 +664,7 @@ msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -727,7 +727,7 @@ msgstr "Data Dictionary" msgid "Tracked tables" msgstr "Sporede tabeller" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -802,12 +802,12 @@ msgstr "Sporingstabel" msgid "Database Log" msgstr "Databaselog" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Værdier for kolonnen \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Indtast hver værdi i et seperat felt." @@ -1138,7 +1138,7 @@ msgstr "Genindlæser privillegier" msgid "Removing Selected Users" msgstr "Fjerner valge brugere" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Luk" @@ -1146,7 +1146,7 @@ msgstr "Luk" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Ret" @@ -1362,7 +1362,7 @@ msgstr "Tilføj mindst en variabel til serien" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1589,7 +1589,7 @@ msgstr "" "Kunne ikke bygge diagramgitter med den importerede konfiguration. Nulstiller " "til standard konfiguration..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1632,7 +1632,7 @@ msgstr "Brugt variabel/formel" msgid "Test" msgstr "Test" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1762,7 +1762,7 @@ msgstr "Eksekveringstid for forespørgsel" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2283,7 +2283,7 @@ msgstr "Intet indeks defineret!" msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2321,7 +2321,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2634,18 +2634,18 @@ msgid "shared" msgstr "delt" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabeller" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2722,7 +2722,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ugyldigt værtsnavn for server %1$s. Gennemgå venligst din konfiguration." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2794,7 +2794,7 @@ msgstr "MySQL returnerede: " msgid "Failed to connect to SQL validator!" msgstr "Kunne ikke oprette forbindelse til SQL validator!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Forklar SQL" @@ -2806,11 +2806,11 @@ msgstr "Spring over Forklar SQL" msgid "Without PHP Code" msgstr "Uden PHP-kode" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Fremstil PHP-kode" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Opdater" @@ -2819,7 +2819,7 @@ msgstr "Opdater" msgid "Skip Validate SQL" msgstr "Spring over Valider SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Valider SQL" @@ -2923,20 +2923,20 @@ msgid "Click to toggle" msgstr "Klik for at skifte" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3139,7 +3139,7 @@ msgid "Set value: %s" msgstr "Indstil værdien %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Gendan standardværdi" @@ -3304,66 +3304,54 @@ msgid "Default display direction" msgstr "Standardretning for visning" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horisontal[/kbd], [kbd]vertikal[/kbd] eller et tal, som angiver " -"maksimum for den anvendte vertikale model" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Vis retning for kolonner, som redigeres/oprettes" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Fane der skal vises, når man går ind i en database" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Standard database-fane" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Fane, som skal vises, når man går ind på en server" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Standard server-fane" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Fane som skal vises, når man går ind i en tabel" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Standard tabel-fane" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Som standard vises binært indhold som HEX" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Vis binært indhold som HEX" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Vis databaser på en liste i stedet for i en valgboks" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Vis databaser på en liste" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Vis servere på en liste i stedet for i en valgboks" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Vis servere på en liste" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3371,35 +3359,35 @@ msgstr "" "Deaktiver masseoperationer for tabelvedligeholdelse såsom optimering eller " "reperation af tabllerne i en database." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Deaktiver vedligeholdelse af flere tabeller" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Rediger SQL-forespørgsler i et popup vindue" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Rediger i et vindue" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Vis fejl" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Indsaml fejl" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Vis ikoner i advarsels-, fejl-, og informationsmeddelelser" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Ikonfejl" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3407,205 +3395,205 @@ msgstr "" "Sæt antallet af sekunder, som et skript må være om at køre ([kbd]0[/kbd] er " "lig med ingen tidsgrænse)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Maksimal eksekveringstid" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Send (download)" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Filens tegnsæt" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Komprimering" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Indsæt feltnavne i første række" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Felter skal adskilles med" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Kolonner escapes med" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Erstat NULL med" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Fjern CRLF-tegn i kolonner" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Kolonner afsluttes med" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Linjer afsluttes med" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel-udgave" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Skabelon for databasenavn" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Skabelon for servernavn" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Skabelon for tabelnavn" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Dump tabel" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Inkluder tabeloverskrift" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Tabeloverskrift" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Fortsat tabeloverskrift" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Mærke nøgle" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relationer" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Eksporttype" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Gem på server" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Overskriv eksisterende fil(er)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Husk skabelon for filnavn" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Brug \"backquotes\" omkring tabel- og feltnavne" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitetstilstand" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "Indstillinger til CREATE TABLE:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Oprettet/Opdateret/Check datoer" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Brug forsinkede indsættelser" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Slå fremmednøgle-checks fra" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Brug hexadecimal for BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Brug ignorer inserts" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Syntaks der bruges, når der indsættes data" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maksimal længde på oprettet forespørgsel" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Eksporttype" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Indlejr eksport i en transaktion" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Angiv eksporttidspunktet i UTC (Universal Time Coordinated)" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Gennemtving sikker forbindelse mens phpMyAdmin bruges" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Gennemtving SSL-forbindelse" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3613,150 +3601,150 @@ msgstr "" "Sorteringsrækkefølge for elementer i valgboks med fremmede nøgler; [kbd]" "content[/kbd] er de refererede data, [kbd]id[/kbd] er nøglens værdi" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Orden af fremmednøgler i valgboks" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Der vil blive brugt en valgboks, hvis færre elementer er til stede" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Øvre grænse for fremmednøgle" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Gennemsynstilstand" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Tilpas for gennemsynstilstand" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Tilpas standardindstillinger" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV (kommasepareret)" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Udvikler" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Indstillinger for phpMyAdmin udviklere" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Redigeringstilstand" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Tilpas redigeringstilstand" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Standardindstillinger for eksport" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Tilpas standardindstillinger for eksport" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Karakteristika" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Generelt" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Bestem indstillinger for nogle af de mest anvendte valgmuligheder" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Standarder for import" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Tilpas standardindstillinger for import" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Import / eksport" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" "Bestem indstillinger for importerings- og eksporteringsmapper samt " "komprimering" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Indstillinger for visning af databaser" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigationsramme" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Tilpas navigationsrammens udseende" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servere" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Indstillinger for visning af servere" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Indstillinger for visning af tabeller" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Hovedramme" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Andre kerneindstillinger" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Indstillinger som ikke passer ind andre steder" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Sidetitler" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3765,22 +3753,22 @@ msgstr "" "Angiv browserens tekst i titelbaren. Se [a@Documentation.html#cfg_TitleTable]" "dokumentationen[/a] for tekststrenge der indeholder særlige værdier." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Forespørgselsvindue" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Tilpas indstillinger for forespørgselsvindue" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Sikkerhed" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3788,23 +3776,23 @@ msgstr "" "Bemærk venligst at phpMyAdmin blot er en brugerflade og at den ikke " "begrænser mulighederne i MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Grundlæggende indstillinger" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Autentifikation" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Indstillinger for autentifikation" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Serverkonfiguration" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3812,15 +3800,15 @@ msgstr "" "Avanceret serverkonfiguration. Lad være med at ændre disse indstillinger med " "mindre du ved, hvad de betyder" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Indtast parametre for tilslutning til server" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Lagring af konfiguration" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3830,11 +3818,11 @@ msgstr "" "funktioner. Se dokumentationen for [a@Documentation.html#linked-tables]" "phpMyAdmin configuration storage[/a]" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Ændrer sporing" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3842,44 +3830,44 @@ msgstr "" "Sporing af ændringer i databasen er udført. phpMyAdmin configuration storage " "er krævet." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Tilpas eksport-indstillinger" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Tilpas import-indstillinger" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Tilpas navigations-rammen" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Tilpas hoved-rammen" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL-forespørgsler" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL Query-boks" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Tilpas links vist i SQL Query-boksen" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Indstillinger til SQL-forespørgsler" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL Validator" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3891,43 +3879,43 @@ msgstr "" "[em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright " "2002 Upright Database Technology. All rights reserved.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Opstart" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Tilpas opstartside" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Faner" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Vælg hvordan du ønsker at fanerne skal fungere" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Tekstfelter" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Tilpas tekstfelter" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Advarsler" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Deaktiver nogle af advarslerne, som phpMyAdmin viser" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3935,15 +3923,15 @@ msgstr "" "Aktiver [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] komprimering for " "import og eksport-funktionerne" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Yderligere parametre til iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3951,11 +3939,11 @@ msgstr "" "Hvis aktiveret, vil phpMyAdmin fortsætte med at udføre efterfølgende SQL-" "forespørgsler selvom et eller flere af dem fejler" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignorer flere efterfølgende fejl i udtryk" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3965,21 +3953,21 @@ msgstr "" "udløber. Dette kan være godt ved store import-filer, men kan afbryde " "transaktioner." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Delvis import: tillad afbrydelse" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Afbryd ikke ved fejl i INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Erstat data i tabellen med filens data" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3987,127 +3975,127 @@ msgstr "" "Standard format, vær opmærksom på, at denne liste afhænger af sted (databae, " "tabel) og kun SQL er altid tilgængelig" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Format på importeret fil" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Brug LOCAL nøgleord" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Indsæt feltnavne i første række" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Importer ikke tomme rækker" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importer valutaer ($5.00 til 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importer procenter med korrekte decimaler (12.00% bliver til .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Antal forespørgsler, der skal springes over fra start" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Delvis import: spring over forespørgsler" # zero = null? -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Brug ikke AUTO_INCREMENT for 0-værdier" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Skydernes udgangspunkt" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Hvor mange rækker kan der indsættes på een gang" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Antal indsatte rækker" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Mål for hurtigt valg ikon" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Vis logoet i venstre ramme" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Vis logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Vis servervalg øverst i venstre ramme" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Vis servervalg" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Mindste antal tabeller der skal vises i tabel-filterboksen" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Streng, der inddeler databaser i træ" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Separator til databaseinddeling" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "Kun i lille version; vis databaser i træ (afgjort vha. separator)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Vis databaser i træ" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Deaktiver dette, hvis du ønsker at se alle databaser på een gang" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Brug lille version" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Maksimal dybde på databasetræ" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Streng, der inddeler tabeller i træ" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Separator til tabelinddeling" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL som logoet i navigations-rammen vil pege på" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logo link-URL" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4115,46 +4103,46 @@ msgstr "" "Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt ([kbd]" "new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logo link target" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Fremhæv server under musepil" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Aktiver fremhævning" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" "Højeste antal af tidligere anvendte tabeller; sæt til 0 for at deaktivere" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Tidligere anvendte tabeller" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Brug faner med mindre grafik" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Lette faner" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "Maksimalt antal tegn vist i ikke-numerisk kolonne ved gennemsyn" # karakterer gives i skolen eller er personer i film -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Begræns antal tegn i kolonne" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4164,11 +4152,11 @@ msgstr "" "logout kun for den aktuelle server.Sættes denne til FALSE, kan man let " "glemme at logge ud fra andre servere, når man er forbundet til flere servere." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Slet alle cookies, når der logges ud" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4176,11 +4164,11 @@ msgstr "" "Definer om den foregående login skal gentages eller ej i cookie " "autentifikationstilstand " -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Gendan brugernavn" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4192,52 +4180,52 @@ msgstr "" "blive slettet så snart browservinduet lukkes. Dette anbefales for ikke-" "sikrede omgivelser." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Login cookie sletning" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Definerer hvor længe (i sekunder) en login cookie er gyldig" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Gyldighed for login cookie" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Dobbelt størrelse for tekstboks for LONGTEXT kolonner" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Større tekstboks for LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Brug ikoner på hovedsiden" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Maksimalt antal tegn, når en SQL-forespørgsel vises" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Maksimal vist SQL-længde" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Brugere kan ikke sætte en højere værdi" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "Maksimalt antal databaser vist i venstre ramme og databaseliste" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Maksimalt antal databaser" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4247,19 +4235,19 @@ msgstr "" "indeholder flere rækker, links til "Forrige" og "Næstet" " "vil blive vist." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Maksimalt antal viste rækker" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Maksimalt antal tabeller vist i tabellisten" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Maksimalt antal tabeller" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4267,11 +4255,11 @@ msgstr "" "Deaktiver standardadvarslen som vises, hvis mcrypt mangler til cookie " "autentifikation" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt advarsel" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4279,43 +4267,43 @@ msgstr "" "Antallet af bytes et script må allokere, fx. [kbd]32M[/kbd] ([kbd]0[/kbd] " "for ubegrænset)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Hukommelsesgrænse" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "Dette er Ret, Kopi og Slet links" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Hvor links til tablerækker skal vises" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Brug naturlig rækkefølge ved sortering af tabeller og databasenavne" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Naturlig rækkefølge" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Brug kun ikoner, kun tekst eller begge" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Navigationsbjælke med ikoner" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "brug GZip output buffering til forhøjet hastighed i HTTP overførsler" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip output buffering" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4323,19 +4311,19 @@ msgstr "" "[kbd]SMART[/kbd] - dvs faldende orden for kolonner af type TIME, DATE, " "DATETIME og TIMESTAMP ellers stigende orden" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Standard sorteringsrækkefølge" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Brug vedvarende forbindelser til MySQL databaser" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Vedvarende forbindelser" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4345,23 +4333,23 @@ msgstr "" "hvis nogen af de påkrævede tabeller i phpMyAdmin configuration storage ikke " "kunne findes." -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Manglende phpMyAdmin configuration storage tabeller" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Tabeloperationer med ikoner" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Tillad ikke redigering af BLOB og BINARY kolonner" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Beskyt binære kolonner" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4371,119 +4359,119 @@ msgstr "" "configuration storage). Hvis deaktiveret bruges JS-rutiner til at vise " "forespørgselshistorik (mistes når vinduet lukkes)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanent forespørgselshistorie" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Hvor mange forespørgsler er gemt i historikken" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Længde på forespørgselshistorik" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Fane vist, når et nyt forespørgselsvindue åbnes" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Standardfane for forespørgselsvindue" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Højde (i pixels) af forespørgselsvindue" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Højde af forspørgselsvindue" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Bredde (i pixels) af forspørgselsvindue" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Bredde af forspørgselsvindue" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Vælg hvilke funktioner, der vil blive brugt for tegnsætskonvertering" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Omkodningsværktøj" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "Når tabeller vises huskes sorteringen af hver tabel" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Husk tabellens sortering" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Gentag overskrifter for hver X celler, [kbd]0[/kbd] deaktiverer dette" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Gentag overskrifter" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Vis hjælpeknap i stedet for dokumentationsteksten" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Vis hjælpeknap" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "Gem alle redigerede celler med det samme" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Mappe, hvor eksporterede data kan gemmes på serveren" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Gemmemappe" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Lades blank, hvis ikke brugt" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Autorisationsrækkefølge for vært" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Lades blank for standardværdi" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Host autorisationsregler" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Tillad login uden adgangskode" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Tillad root login" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm navn, der vises ved HTTP Auth" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4493,19 +4481,19 @@ msgstr "" "autentifikation[/a] (ikke fundet i din dokumentrod; forslag: /etc/swekey." "conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey konfigurationsfil" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Metode for autentifikation" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Autentifikationstype" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4513,11 +4501,11 @@ msgstr "" "Lades blank for ingen [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" "a] understøttelse, forslag: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Bogmærketabel" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4525,31 +4513,31 @@ msgstr "" "Lades blank ved ingen kolonnekommentarer/mime types, forslag: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Tabel for kolonneinformation" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Komprimer forbindelse til MySQL server" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Komprimer forbindelse" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Hvordan forbindes til server, behold [kbd]tcp[/kbd] hvis usikker" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Forbindelsestype" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Adgangskode for kontrolbruger" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4557,19 +4545,19 @@ msgstr "" "En speciel MySQL bruger med begrænsede tilladelser. Mere information på " "[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Kontrolbruger" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Optæl tabeller, når databaselisten vises" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Optæl tabeller" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4577,11 +4565,11 @@ msgstr "" "Lad være blank for ingen Designer support, forslag: [kbd]pma_designer_coords" "[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Designer tabel" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4589,28 +4577,28 @@ msgstr "" "Mere information om [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] og [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Deaktiver brug af INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Hvilken PHP-udvidelse der skal bruges; du bør bruge mysqli hvis understøttet" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "PHP-udvidelse, der skal bruges" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Gem databaser som matcher regulært udtryk (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Skjul databaser" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4618,23 +4606,23 @@ msgstr "" "Lades blank for ingen historik for SQL-forespørgsler, forslag: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL forespørgselsshistoriktabel" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Servernavn, hvor MySQL server kører" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Servernavn" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Log ud URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" @@ -4642,19 +4630,19 @@ msgstr "" "Denne konfiguration sikrer, at vi kun beholder de N (N = MaxTableUiprefs) " "nyeste rækker i \"table_uiprefs\" og automatisk sletter ældre rækker" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Maksimalt antal rækker gemt i tabellen \"table_uiprefs\"" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Prøv at forbinde uden adganskode" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Forbind uden adgangskode" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4668,30 +4656,30 @@ msgstr "" "navnene efter hinanden og brug [kbd]*[/kbd] i slutningen for at vise resten " "i alfabetisk orden." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Vis kun listede databaser" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Lades tom hvis du ikke bruger config auth" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Adgangskode for config auth" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Lades blank for ingen understøttelse af PDF-skematik, forslag: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF-skematik: pages tabel" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4701,19 +4689,19 @@ msgstr "" "wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for komplet information. Lades blank " "ved ingen understøttelse. Forslag: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Databasenavn" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Port hvorpå MySQL server lytter, lades tom for standard" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Serverport" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4721,11 +4709,11 @@ msgstr "" "Lades blank for ingen \"vedvarende\" senest benyttede tabeller på tværs af " "sessioner, forslag: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Senest benyttede tabel" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4733,19 +4721,19 @@ msgstr "" "Lades blank for ingen understøttelse af [a@http://wiki.phpmyadmin.net/pma/" "relation]relation-links[/a], forslag: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Relationstabel" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "SQL-kommando til at hente tilgængelige databaser" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES kommando" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4753,42 +4741,42 @@ msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types[/" "a] for et eksempel" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Login sessionsnavn" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Login URL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Socket hvorpå MySQL server lytter, lades tom for standard" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Brug SSL til forbindelse til MySQL-serveren" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Brug SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Lades blank for ingen understøttelse af PDF-skematik, forslag: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF-skematik: tabel coordinates" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4796,11 +4784,11 @@ msgstr "" "Tabel til at beskrive visningskolonnerne, lades blank for ingen " "understøttelset; forslag: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Visningskolonnetabel" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4808,11 +4796,11 @@ msgstr "" "Lades blank for ingen \"vedvarende\" tabel UI præferencer på tværs af " "sessioner, forslag: [kbd]pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "UI præference tabel" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4820,11 +4808,11 @@ msgstr "" "Om en DROP DATABASE IF EXISTS kommando skal tilføjes som første linje i " "loggen når en database oprettes." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Tilføj DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4832,11 +4820,11 @@ msgstr "" "Om en DROP TABLE IF EXISTS kommando skal tilføjes som første linje i loggen " "når en tabel oprettes." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Tilføj DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4844,20 +4832,20 @@ msgstr "" "Om en DROP VIEW IF EXISTS kommando skal tilføjes som første linje i loggen " "når et view oprettes." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Tilføj DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Definerer listen af forspørgsler, som auto-creation bruger for nye sessioner." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Forespørgsler, der skal spores" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4865,22 +4853,22 @@ msgstr "" "Lades blank for ingen understøttelse af SQL-forspørgselssporing, forslag: " "[kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Sporingstabel for SQL-forespørgsler" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" "Om sporingsmekanismen opretter versioner automatisk for tabeller og views." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Opret versioner automatisk" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" @@ -4888,15 +4876,15 @@ msgstr "" "Lades blank for ingen bruger preference storage i database, forslag: [kbd]" "pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Bruger preference storage tabel" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Bruger for config auth" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4904,11 +4892,11 @@ msgstr "" "Deaktiver, hvis du ved at dine pma_*tables er opdaterede. Dette forhindrer " "kompatibilitetschecks og forbedrer dermed ydelsen" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Check med ekstra information" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4916,19 +4904,19 @@ msgstr "" "En brugervenlig beskrivelse af serveren. Lad stå tom for at vise " "værtstnavnet i stedet." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Udvidet navn for denne server" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Om en "vis alle (rækker)" knap, skal vises for brugeren" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Tillad visning af alle rækker" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4939,53 +4927,53 @@ msgstr "" "konfigurationsfilen; dette begrænser ikke muligheden for at udføre den samme " "kommando direkte" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Vis formular til ændring af adgangskode" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Vis formular til databaseoprettelse" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" "Definerer om type display retning indstilling vises, når en tabel gennemses" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Vis retning for visning" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" "Definerer om typefelter skal startes med at vises i ret/indsæt tilstand" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Vis felttyper" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Vis funktionsfelterne i rediger/indsæt tilstand" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Vis funktionsfelter" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "Om hints skal vises eller ej" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "Vis hint" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4993,31 +4981,31 @@ msgstr "" "Viser link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Vis phpinfo() link" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Vis detaljeret MySQL serverinformation" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Definerer om SQL-forespørgsler genereret af phpMyAdmin skal vises" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Vis SQL-forespørgsler" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "Tillad visning af database og databasestatistikker (eks. diskforbrug)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Vis statistik" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5025,11 +5013,11 @@ msgstr "" "Hvis tooltips er aktiverede og en databasekommentar er sat, vil dette skifte " "mellem kommentaren og det virkelige navn" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Vis databasekommentar i stedet for dens navn" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5041,29 +5029,29 @@ msgstr "" "['LeftFrameTableSeparator'], så kun mappen benævnes som aliaset; tabelnavnet " "selv forbliver uændret." -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Vis tabelkommentar stedet for dens navn" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Vis tabelkommentarer i tooltips" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Marker brugte tabeller og gør det muligt at vise databaser med låste tabeller" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Spring over låste tabeller" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Kræver SQL Validator bliver aktiveret" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5073,7 +5061,7 @@ msgstr "Kræver SQL Validator bliver aktiveret" msgid "Password" msgstr "Adgangskode" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5081,11 +5069,11 @@ msgstr "" "[strong]Advarsel[/strong] kræver installation af PHP SOAP udvidelsen eller " "PEAR SOAP" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Aktiver SQL Validator" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5093,12 +5081,12 @@ msgstr "" "Hvis du har dit eger brugernavn, så angiv det her (standard [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Brugernavn" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5106,19 +5094,19 @@ msgstr "" "Foreslå et databasenavn på formularen for "Opret database" (hvis " "muligt) eller lad feltet være tomt " -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Foreslå nyt databasenavn" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "En advarsel vises på hovedsiden, hvis Suhosin er detekteret" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin advarsel" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5127,11 +5115,11 @@ msgstr "" "fremhævet i SQL forespørgselstekstbokse (*2) og for forespørgselsvinduet " "(*1,25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Tekstboks kolonner" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5140,31 +5128,31 @@ msgstr "" "fremhævet i SQL forespørgselstekstbokse (*2) og for forespørgselsvinduet " "(*1,25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Tekstboks rækker" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Titel på browservindue, når en database er valgt" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Titel på browservindue, når ingenting er valgt" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Standardtitel" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Titel på browservindue, når en server er valgt" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Titel på browservindue, når en tabel er valgt" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5176,27 +5164,27 @@ msgstr "" "Forwarded-For) header der kommer fra proxy 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste af trusted proxies til IP tillad/afvis" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Mappe på server, hvor man kan uploade filer til import" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Mappe til uploads" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Tillad søgning i hele databasen" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Brug databasesøgning" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5204,11 +5192,11 @@ msgstr "" "Når deaktiveret kan brugere ikke sætte nogen af indstillingerne nedenfor " "uafhængig af checkboksen til højre" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Aktiver udviklerfanen i indstillinger" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5218,19 +5206,19 @@ msgstr "" "import.lib.php for standard for hvor mange forespørgsler en sætning må " "indeholde." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Udvidet info for multiple forespørgsler" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Check for den seneste version" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Aktiverer check for den seneste version på hovedsiden for phpMyAdmin" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5238,7 +5226,7 @@ msgstr "Aktiverer check for den seneste version på hovedsiden for phpMyAdmin" msgid "Version check" msgstr "Versionscheck" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5246,7 +5234,7 @@ msgstr "" "Aktiver [a@http://en.wikipedia.org/wiki/ZIP_(fil_format)]ZIP[/a] " "komprimering ved import and eksport operationer" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5266,47 +5254,47 @@ msgstr "HTTP autentifikation" msgid "Signon authentication" msgstr "Login autentifikation" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV vha. LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document regneark" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Hurtig" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Brugerdefineret" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Database eksportindstillinger" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV til MS Excel-data" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document tekst" @@ -5478,9 +5466,8 @@ msgstr "Opret tabel" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Navn" @@ -5820,7 +5807,7 @@ msgid "Hide" msgstr "Skjul" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" @@ -6754,7 +6741,7 @@ msgstr "Ugyldigt kolonneantal i CSV-input på linie %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Tabelnavn" @@ -7439,7 +7426,7 @@ msgstr "Parametre" msgid "Direction" msgstr "Retning" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Længde/Værdi*" @@ -7697,7 +7684,7 @@ msgstr "Indholdsfortegnelse" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Attributter" @@ -7994,7 +7981,7 @@ msgstr "Tabel ser ud til at være tom!" msgid "Tracking of %s.%s is activated." msgstr "Sporing af %s.%s er aktiveret." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8006,7 +7993,7 @@ msgstr "" "eller et enkelt anførselstegn (\"'\") blandt disse værdier, så tilføj en " "ekstra backslash (fx '\\\\xyz' eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8014,13 +8001,13 @@ msgstr "" "For standardværdier, indtast venligst kun en enkelt værdi, uden backslash " "escaping eller quotes, ud fra følgende format: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8029,11 +8016,11 @@ msgstr "" "For en liste over mulige transformationsindstillinger og deres MIME-type " "transformationer, klik på %stransformationsbeskrivelser%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Transformationsindstillinger" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8045,34 +8032,34 @@ msgstr "" "\") eller en apostrof (\"'\") i værdierne, backslash det (for eksempel '\\" "\\xyz' eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "ENUM eller SET data for lang?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Få mere redigeringsplads" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Ingen" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Som defineret:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primær" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Fuldtekst" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8081,25 +8068,25 @@ msgstr "" "Der er ingen beskrivelse af denne transformation.
Spørg venligst " "forfatteren, hvad %s gør." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Tilføj %s kolonne(r)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Du skal tilføje mindst en kolonne." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Datalager" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "PARTITION definition" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Tilføj en værdi" @@ -13059,6 +13046,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert er sat til 0" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horisontal[/kbd], [kbd]vertikal[/kbd] eller et tal, som angiver " +#~ "maksimum for den anvendte vertikale model" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Vis retning for kolonner, som redigeres/oprettes" + #~ msgid "Create table on database %s" #~ msgstr "Opret ny tabel i database %s" diff --git a/po/de.po b/po/de.po index 2079371bdc..837a718849 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-28 15:12+0200\n" "Last-Translator: Sven Strickroth \n" "Language-Team: german \n" @@ -66,7 +66,7 @@ msgstr "Suche" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Datenbankkommentar: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Tabellen-Kommentar" @@ -140,7 +140,7 @@ msgstr "Tabellen-Kommentar" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Spalte" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Typ" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Standard" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Verweise" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Kommentare" @@ -313,14 +313,14 @@ msgstr "Nur Daten" msgid "CREATE DATABASE before copying" msgstr "Vor dem Kopieren CREATE DATABASE ausführen" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Füge %s hinzu" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" @@ -335,8 +335,8 @@ msgstr "Zu kopierter Datenbank wechseln" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Beziehungsschema bearbeiten oder exportieren" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -669,7 +669,7 @@ msgid "Check tables having overhead" msgstr "Tabellen mit Überhang auswählen" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -731,7 +731,7 @@ msgstr "Strukturverzeichnis" msgid "Tracked tables" msgstr "Verfolgte Tabellen" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -806,12 +806,12 @@ msgstr "Verfolge Tabelle" msgid "Database Log" msgstr "Datenbank-Log" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Werte für die Spalte \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Jeden Wert in einem eigenen Feld eingeben." @@ -1155,7 +1155,7 @@ msgstr "Benutzerrechte werden neu geladen" msgid "Removing Selected Users" msgstr "Die ausgewählten Benutzer werden gelöscht" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Schliesse" @@ -1163,7 +1163,7 @@ msgstr "Schliesse" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Bearbeiten" @@ -1375,7 +1375,7 @@ msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1605,7 +1605,7 @@ msgstr "" "Aufbau der Diagramme mit der importierten Konfiguration ist fehlgeschlagen. " "Falle auf Standardeinstellungen zurück..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1648,7 +1648,7 @@ msgstr "Benutzte Variable/Formel" msgid "Test" msgstr "Test" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1779,7 +1779,7 @@ msgstr "Ausführungszeit der Abfrage" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2306,7 +2306,7 @@ msgstr "Kein Index definiert!" msgid "Indexes" msgstr "Indizes" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2344,7 +2344,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2654,18 +2654,18 @@ msgid "shared" msgstr "freigegeben" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabellen" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2743,7 +2743,7 @@ msgstr "" "Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre " "Konfiguration." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2815,7 +2815,7 @@ msgstr "MySQL meldet: " msgid "Failed to connect to SQL validator!" msgstr "Verbindungsaufbau zu SQL-Validator schlug fehl!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL erklären" @@ -2827,11 +2827,11 @@ msgstr "SQL-Erklärung umgehen" msgid "Without PHP Code" msgstr "ohne PHP-Code" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP-Code erzeugen" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Aktualisieren" @@ -2840,7 +2840,7 @@ msgstr "Aktualisieren" msgid "Skip Validate SQL" msgstr "SQL-Validierung umgehen" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL validieren" @@ -2953,20 +2953,20 @@ msgid "Click to toggle" msgstr "Zum Umschalten anklicken" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3165,7 +3165,7 @@ msgid "Set value: %s" msgstr "Setze Wert: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Voreingestellten Wert wiederherstellen" @@ -3330,66 +3330,54 @@ msgid "Default display direction" msgstr "Stamdardanzeigerichtung" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertikal[/kbd] oder eine Zahl, welche die " -"maximale Menge angibt, für die das vertikale Modell genutzt werden soll" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Anzeigerichtung für das Ändern/Erstellen von Spalten" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Angezeigter Reiter beim Öffnen einer Datenbank" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Standardtab bei Datenbanken" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Angezeigter Reiter beim Öffnen eines Servers" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Standardtab bei Servern" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Angezeigter Reiter beim Öffnen einer Tabelle" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Standardtab bei Tabellen" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Binäre Inhalte standardmäßig hexadezimal anzeigen" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Binäre Inhalte in hexadezimal anzeigen" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Datenbanken als Liste statt Dropdownfeld anzeigen" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Datenbanken als Liste anzeigen" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Server als Liste statt Dropdownfeld anzeigen" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Server als Liste anzeigen" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3397,35 +3385,35 @@ msgstr "" "Deakivieren von Massen-Operationen der Tabellen-Instandhaltung, wie " "optimieren oder reparieren von ausgewählten Tabellen einer Datenbank." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Deaktivieren von Massen-Operationen zur Tabellen-Instandhaltung" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "SQL-Abfragen in einem Popup-Fenster bearbeiten" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "In Fenster bearbeiten" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Fehler anzeigen" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Fehler sammeln" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Icons für Warnhinweise, Fehlermeldungen und Informationen anzeigen" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Fehler als Symbole" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3433,205 +3421,205 @@ msgstr "" "Die Anzahl der Sekunden, welche ein Script zur Ausführung benötigen darf " "([kbd]0[/kbd] für unbegrenzt)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Maximale Ausführungszeit" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Senden" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Zeichensatz der Datei" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Kompression" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Spaltennamen in die erste Zeile setzen" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Spalten eingeschlossen von" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Felder ausgeschlossen von" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Ersetze NULL durch" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "CRLF-Zeichen aus den Zeilen entfernen" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Spalten enden auf" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Zeilen getrennt mit" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel-Ausgabe" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Schablone für Datenbanknamen" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Schablone für Servernamen" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Schablone für Tabellennamen" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Tabelle exportieren" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Tabellenbeschriftung einfügen" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Tabellenbeschriftung" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Fortgesetzte Tabellenbeschriftung" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Kennzeichen" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-Typ" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Tabellenverknüpfungen" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Exportmethode" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Auf Server speichern" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Bestehende Datei(en) überschreiben" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Schablone für Dateinamen merken" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Tabellen- und Feldnamen mit Backticks umschließen" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL-Kompatibilitätsmodus" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "CREATE TABLE Optionen:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Erzeugungs-/Aktualisierungs-/Überprüfungszeiten" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Verzögerten INSERT-Befehl verwenden" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Fremdschlüsselüberprüfung deaktivieren" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Benutze hexadecimal für BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Fehlerübergehenden INSERT-Befehl verwenden" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Zu verwendende Syntax beim Hinzufügen von Daten" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maximale Länge der erstellten Abfrage" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Exporttyp" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Export in einer Transaktion zusammenfassen" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Zeit des Exports in UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Sichere Verbindung während der Nutzung von phpMyAdmin erzwingen" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "SSL-Verbindung erzwingen" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3639,149 +3627,149 @@ msgstr "" "Sortierreihenfolge für "FOREIGN KEY"-Dropdownfelder. [kbd]content[/" "kbd] ist der referenzierte Wert, [kbd]id[/kbd] ist der Schlüsselwert" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Sortierreihenfolge für "FOREIGN KEY"-Dropdownfelder" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" "Es wird ein Auswahl-Feld verwendet, falls weniger Einträge vorhanden sind" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "FOREIGN KEY Limit" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Anzeigemodus" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Anzeigemodus anpassen" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Standard-Einstellungen anpassen" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Entwickler" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Einstellungen für phpMyAdmin Entwickler" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Bearbeitungsmodus" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Bearbeitungsmodus anpassen" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Voreinstellung für Export" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Standard-Exporteinstellungen anpassen" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Features" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Allgemein" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Einige oft verwendete Optionen setzen" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Voreinstellung für Import" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Standard-Importeinstellungen anpassen" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Import/Export" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Import/Export-Verzeichnis und Kompressionsoptionen setzen" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Anzeigeoptionen für Datenbank" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigationsframe" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Aussehen der Navigation anpassen" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Anzeigeoptionen für Server" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Anzeigeoptionen für Tabellen" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Hauptframe" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Dokument öffnen" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Sonstige Einstellungen" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Einstellungen welche in keine andere Kategorie passten" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Seitentitel" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3791,22 +3779,22 @@ msgstr "" "und Variablennamen in der [a@Documentation.html#cfg_TitleTable]Dokumentation" "[/a]." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Abfragefenster" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Queryfenster-Einstellungen anpassen" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Sicherheit" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3814,23 +3802,23 @@ msgstr "" "Beachten Sie, dass phMyAdmin nur ein Userinterface ist und in keinster Weise " "die Möglichkeiten von MySQL limitiert" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Grundeinstellungen" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Authentifizierung" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Authentifizierungseinstellungen" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Serverkonfiguration" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3838,15 +3826,15 @@ msgstr "" "Erweiterte Serverkonfiguration, ändern Sie diese Einstellungen nur wenn Sie " "wissen was Sie tun" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Geben Sie die Verbindungsparameter für den Server ein" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Konfigurationsspeicher" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3856,11 +3844,11 @@ msgstr "" "Features zu erhalten, siehe [a@Documentation.html#linked-tables]phpMyAdmin-" "Konfigurationsspeicher[/a] in der Dokumentation" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Ändert die Verfolgung" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3868,44 +3856,44 @@ msgstr "" "Verfolgen von Datenbankänderungen. Erfordert eine konfigurierte PMA-" "Datenbank." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Exportoptionen anpassen" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Importeinstellungen anpassen" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Navigationsframe anpassen" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Hauptframe anpassen" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL-Abfragen" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL-Querybox" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Angezeigte Links in SQL-Querybox ändern" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Einstellungen für SQL-Abfragen" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL-Prüfung" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3918,43 +3906,43 @@ msgstr "" "com/]Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. " "Alle Rechte vorbehalten.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Start" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Startseite anpassen" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Tabs" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Wählen Sie wie die Tabs funktionieren sollen" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Textfelder" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Texteingabefelder anpassen" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! Text" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Warnungen" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Unterdrückung einiger phpMyAdmin Warnhinweise" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3962,15 +3950,15 @@ msgstr "" "[a@http://de.wikipedia.org/wiki/Gzip]GZip[/a]-Kompression für Import- und " "Exportoperationen aktiviren" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Extra Parameter für iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3978,11 +3966,11 @@ msgstr "" "Wenn aktiv, fährt phpMyAdmin bei der Verarbeitung von multi-Statement-Querys " "fort, wenn eine Query fehlschlägt" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Fehler bei Multi-Statements ignorieren" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3992,21 +3980,21 @@ msgstr "" "Zeitlimit bald erreicht ist. Dies ist eine gute Idee zum Importieren von " "großen Files, kann aber Probleme mit Transaktionen verursachen." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Teilweiser Import: Unterbrechung erlauben" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Bei INSERT Fehler nicht abbrechen" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Tabelleninhalt ersetzen" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4014,89 +4002,89 @@ msgstr "" "Voreingestelltes Format. Bitte beachten, dass diese Liste vom Ort abhängt " "(Datenbank, Tabelle) und nur SQL immer verfügbar ist" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Dateiformat" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "verwende LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Spaltennamen in der ersten Zeile" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Keine leeren Datensätze importieren" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Währungen importieren ($5.00 zu 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Prozentwerte als Dezimalzahlen importieren (12.00% wird zu 0.12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Anzahl der am Anfang zu überspringenden Abfragen" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Teilimport: Überspringe Anfragen" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT nicht für Nullwerte verwenden" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Anfangswert für Schieberegler" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Anzahl der auf einmal einfügbaren Datensätze" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Anzahl der eingefügten Datensätze" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Ziel für Schnellzugriff-Icon" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Logo im linken Frame anzeigen" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Logo anzeigen" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Server-Auswahl oben im linken Frame anzeigen" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Server-Auswahl anzeigen" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Minimale Anzahl der in einer Tabellenliste anzuzeigenden Tabellen" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" "Zeichenkette, die Datenbanken in unterschiedliche Baum-Abschnitte unterteilt" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Trennzeichen für Datenbank-Baum" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4104,40 +4092,40 @@ msgstr "" "Nur für die Light-Version: Datenbanken als Baum anzeigen (wie vom unten " "definierten Trennzeichen bestimmt)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Datenbanken als Baum anzeigen" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Ausschalten, wenn Sie alle Datenbanken auf einmal sehen möchten" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Light-Version benutzen" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Maximale Tiefe des Tabellen-Baumes" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" "Zeichenkette, die Tabellen in unterschiedliche Baum-Abschnitte unterteilt" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Trennzeichen für Tabellen-Baum" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL auf die das Logo im Navigations-Frame zeigt" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "URL für Logo-Link" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4145,48 +4133,48 @@ msgstr "" "Öffne Links im aktuellen Fenster([kbd]main[/kbd]) oder in einem neuen " "Fenster ([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Ziel für Logo-Link" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Server unter Mauscursor hervorheben" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Hervorhebung ermöglichen" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" "Maximale Anzahl der kürzlichen verwendeten Tabellen, auf 0 setzen zum " "deaktivieren" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Kürzlich verwendete Tabellen" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Benutze graphisch weniger anspruchsvolle Tabs" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Light Tabs" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Maximal dargestellte Zeichenzahl bei Anzeige einer nicht-numerischen Spalte " "in einer SQL-Abfrage" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Zeichen pro Spalte begrenzen" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4196,11 +4184,11 @@ msgstr "" "FALSE, wird logout nur auf dem aktuellen Server vollzogen. FALSE macht es " "leicht, logout auf andern Servern zu vergessen." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "All Cookies beim Logout löschen" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4208,11 +4196,11 @@ msgstr "" "Legt fest, ob das vorherige login bei Cookie Authentifizierung " "wiederhergestellt werden soll" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Benutzername wiederherstellen" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4224,54 +4212,54 @@ msgstr "" "Sitzung gespeichert wird und beim Schließen des Browserfensters sofort " "gelöscht wird. Dies wird für nicht vertrauenswürdige Umgebungen empfohlen." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Login Cookie Speicherung" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Legt fest, wie lange (in Sekunden) ein Login Cookie gültig ist" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Login Cookie Gültigkeit" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Verdoppele Größe für LONGTEXT Spalten" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Größere Textfelder für LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Verwende Icons auf der Hauptseite" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Maximal dargestellte Zeichenzahl bei Anzeige einer SQL-Abfrage" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Zeichen Maximum beim SQL Befehl anzeigen" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Benutzer dürfen keinen größeren Wert setzen" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Maximale Anzahl von Datenbanken, die im linken Frame und in der Datenbank-" "Liste angezeigt werden" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Datenbanken Maximum" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4281,19 +4269,19 @@ msgstr "" "Datensätze vorhanden sind, werden "Previous" and "Next" " "Links angezeigt." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Maximale Anzahl der angezeigten Datensätze" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Maximale Anzahl der in einer Tabellenliste angezeigten Tabellen" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Tabellen Maximum" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4301,11 +4289,11 @@ msgstr "" "Standardmeldung unterdrücken wenn mcrypt für die Cookie Authentifizierung " "nicht vorhanden ist" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt Warnhinweis" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4313,44 +4301,44 @@ msgstr "" "Anzahl der Bytes, welche ein Script zur Ausführung benötigen darf, z.B. [kbd]" "32M[/kbd] ([kbd]0[/kbd] für unbegrenzt)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Speicher Limit" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "Dies sind Bearbeitungs-, Kopier- und Löschlinks" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Wo die Datensatz-Links angezeigt werden sollen" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" "Natürliche Sortierreihenfolge für Tabellen- und Datenbanknamen verwenden" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Natürliche Reihenfolge" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Verwende nur Icons, nur Text oder beides" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Navigationsleiste mit Icons" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Verwende Gzip output buffering, um HTTP transfers zu beschleunigen" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip Ausgabepufferung" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4358,19 +4346,19 @@ msgstr "" "[kbd]SMART[/kbd] - d.h. absteigende Sortierung für die Feldtypen TIME, DATE, " "DATETIME und TIMESTAMP, sonst aufsteigende Sortierung" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Voreingestellte Sortierung" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Verwende andauernde Verbindungen zu MySQL Datenbanken" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Persistente Verbindung" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4379,23 +4367,23 @@ msgstr "" "Standardhinweis der Datenbankstruktur-Detailansicht unterdrücken, wenn eine " "erforderliche Tabelle der phpMyAdmin Konfiguration nicht gefunden werden kann" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Fehlende phpMyAdmin-Konfigurationsspeicher-Tabellen" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Tabellenbearbeitung mittels Icons" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Änderungen an BLOB und BINARY Feldern verbieten" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "BINARY-Felder schützen" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4406,121 +4394,121 @@ msgstr "" "Routinen zur Darstellung des Abfrageverlaufs eingesetzt (sie gehen beim " "Schließen des Fensters verloren)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Anfragelog speichern" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Anzahl der Abfragen in der Historie" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Länge des Abfrageverlaufs" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Angezeigter Tab beim Öffnen eines neuen Abfragefensters" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Voreingestellter Tab für Abfragefenster" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Höhe des Abfragefensters (in Pixeln)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Höhe des Abfragefensters" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Breite des Abfragefensters (in Pixeln)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Breite des Abfragefensters" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Wahl der Funktionen zur Zeichensatz-Konvertierung" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Umwandlungs Engine" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" "Während des Durchsehens der Tabellen wird die Sortierung zwischengespeichert" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Tabellensortierung zwischenspeichern" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Kopfzeilen alle n Zellen anzeigen, [kbd]0[/kbd] deaktiviert diese Option" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Kopfzeilen wiederholen" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Hilfe-Button anstelle des Hilfetexts anzeigen" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Hilfe-Button anzeigen" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "Speichere alle bearbeiteten Zellen auf einmal" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Verzeichnis auf dem Server für Exports" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Speicher Verzeichnis" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Leer lassen, wenn unbenutzt" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Host-Autorisierungsreihenfolge" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Leer lassen, um die Voreinstellungen zu verwenden" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Host-Autorisierungsregeln" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Erlaube Logins ohne Passwort" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Erlaube root Login" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm Name , der bei HTTP Auth angezeigt wird" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4530,19 +4518,19 @@ msgstr "" "Authentifizierung[/a] (liegt nicht im Webhauptverzeichnis (document root); " "empfohlen: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey Konfigurationsdatei" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Zu benutzende Authentifikations-Methode" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Authentifikationstyp" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4550,11 +4538,11 @@ msgstr "" "Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" "a] Unterstützung, Vorschlag: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Bookmark Table" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4562,32 +4550,32 @@ msgstr "" "Leer lassen für keine Spalten Kommentare/mime types,Vorschlag: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Column Info Table" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Komprimiere die Verbindung zum MySQL-Server" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Verbindung komprimieren" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Art der Verbindung zum Server, im Zweifelsfalle auf [kbd]tcp[/kbd] belassen" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Art der Verbindung" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Control-user Passwort" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4595,19 +4583,19 @@ msgstr "" "Ein besonderer MySQL Nutzer mit eingeschränkten Rechten, nähere " "Informationen auf [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Control-user" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Zähle Tabellen bei Anzeige der Datenbank-Liste" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Zähle Tabellen" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4615,11 +4603,11 @@ msgstr "" "Leer lassen für keine Designer Unterstützung, Vorschlag: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Designer Coords Table" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4627,29 +4615,29 @@ msgstr "" "Mehr Informationen auf [a@http://sf.net/support/tracker.php?aid=1849494]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Benutzung von INFORMATION_SCHEMA deaktivieren" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Die zu verwendente PHP Erweiterung; sie sollten mysqli verwenden wenn es " "verfügbar ist" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "PHP Erweiterung" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Verberge Datenbanken, die auf regular expressions (PCRE) passen" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Datenbanken verstecken" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4657,41 +4645,41 @@ msgstr "" "Leer lassen für keine SQL Abfragehistorien-Unterstützung, Vorschlag: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL Abfragehistorien Tabelle" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Rechnername auf dem der MySQL Server läuft" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Hostname" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Logout URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Maximale Anzahl der Einträge in der Tabelle \"table_uiprefs\"" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Versuche ohne Passwort zu verbinden" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Ohne Passwort verbinden" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4705,30 +4693,30 @@ msgstr "" "werden; geben Sie ihre Namen sortiert ein und nutzen Sie am Ende [kbd]*[/" "kbd], um die übrigen in alphabetischer Reihenfolge anzuzeigen." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Nur aufgelistete Datenbanken zeigen" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Leer lassen, wenn config auth nicht verwendet wird" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Passwort für config Authentifikation" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Leer lassen für keine PDF Schema Unterstützung, Vorschlag: [kbd]pma_pdf_pages" "[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF Pages Table" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4738,19 +4726,19 @@ msgstr "" "phpmyadmin.net/pma/pmadb]pmadb[/a] für komplette Information. Leer lassen " "für keine Unterstützung. Vorschlag: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Datenbankname" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Port, auf dem der MySQL-Server horcht, leer lassen für Voreinstellung" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Port" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4758,11 +4746,11 @@ msgstr "" "Leer lassen, um die kürzlich verwendeten Tabellen nicht in der Datenbank " "\"dauerhaft\" zu speichern, Vorschlag: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Kürzich verwendete Tabellen" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4770,19 +4758,19 @@ msgstr "" "Leer lassenfür keine [a@http://wiki.phpmyadmin.net/pma/relation]relation-" "links[/a] Unterstützung, Vorschlag: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Relation Table" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "SQL Komando, um verfügbare Datenbanken abzurufen" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES Befehl" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4790,43 +4778,43 @@ msgstr "" "Siehe [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " "types[/a] für ein Beispiel" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Signon Session-Name" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Socket, auf dem der MySQL-Server horcht, leer lassen für Voreinstellung" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Sockel" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Ermögliche SSL für Verbindung zum MySQL-Server" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Benutze SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Leer lassen für keine PDF Schema Unterstützung, Vorschlag: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF Schema: Tabellen Koordinatien" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4834,11 +4822,11 @@ msgstr "" "Tabelle zur Beschreibung der Anzeigespalten, leer lassen für keine " "Unterstützung; Vorschlag: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Tabelle für Anzeigespalten" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4846,11 +4834,11 @@ msgstr "" "Leer lassen, um die Oberflächeneinstellungen nicht \"dauerhaft\" in der " "Datenbank zu speichern, Vorschlag: [kbd]pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Tabelle für Oberflächeneinstellungen" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4858,11 +4846,11 @@ msgstr "" "DROP DATABASE IF EXISTS statement beim Erstellen einer neuen Datenbank als " "erste Zeile loggen." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "DROP DATABASE hinzufügen" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4870,11 +4858,11 @@ msgstr "" "DROP TABLE IF EXISTS statement beim Erstellen einer neuen Ansicht als erste " "Zeile loggen." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "DROP TABLE hinzufügen" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4882,21 +4870,21 @@ msgstr "" "DROP VIEW IF EXISTS statement beim Erstellen einer neuen Ansicht als erste " "Zeile loggen." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "DROP VIEW hinzufügen" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Legt die Liste der Statements fest, welche die automatische " "Versionserstellung für neue Versionen verwenden." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Zu verfolgende Statements" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4904,11 +4892,11 @@ msgstr "" "Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: [kbd]" "pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Tabelle mit Verfolgung der SQL-Abfragen" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4916,11 +4904,11 @@ msgstr "" "Automatische Versionserstellung für Tabellen und Ansichten durch den " "Verlaufs-Mechanismus." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Versionen automatisch erzeugen" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4932,15 +4920,15 @@ msgstr "" "Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu " "speichern, Vorschlag: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Tabelle für Benutzereinstellungen" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Benutzername für config Authentifikation" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4948,11 +4936,11 @@ msgstr "" "Ausschalten, wenn die pma_* Tabellen aktuell sind. Dies verhindert " "Kompatibilitätsprüfungen und verbessert so die Leistung" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Tabellenprüfung" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4960,21 +4948,21 @@ msgstr "" "Benutzerfreundlicher Name des Servers. Leer lassen um den tatsächlichen " "Rechnernamen anzuzeigen." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Serverbezeichnung" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Ob dem Benutzer eine Schaltfläche „Alle (Datensätze) anzeigen” " "angezeigt werden soll" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Erlaube es alle Datensätze anzuzeigen" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4985,15 +4973,15 @@ msgstr "" "dieses beschränkt nicht die Möglichkeit der direkten Ausführung des selben " "Befehls" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Zeige Formular zur Passwort-Änderung" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Zeige Formular zur Datenbank-Erstellung" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" @@ -5001,11 +4989,11 @@ msgstr "" "Legt fest, ob die Typen-Anzeige-Richtungs-Option gezeigt wird, beim " "durchsuchen einer Tabelle" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Zeige die Anzeige-Richtung" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -5013,27 +5001,27 @@ msgstr "" "Definiert, ob Typen-Felder anfänglich im Bearbeiten/Einfügen-Modus angezeigt " "werden" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Feld-Typen anzeigen" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Im Bearbeiten/Einfügen Modus Funktionsfelder anzeigen" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Funktionsfelder anzeigen" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "Hinweise anzeigen" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "Hinweis anzeigen" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5041,34 +5029,34 @@ msgstr "" "Zeige Link zu [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "Ausgabe" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Zeige phpinfo() Link" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Zeige detailierte MySQL-Server Informationen" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Legt fest, ob von phpMyAdmin generierte SQL-Abfragen angezeigt werden sollten" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Zeige SQL Anfragen" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Erlaube die Anzeige von Datenbank- und Tabellen-Statistiken, ( z.B. " "Platzbedarf)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Zeige Statistik" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5076,11 +5064,11 @@ msgstr "" "Wenn Tooltips eingeschaltet sind und Datenbank-Kommentare vorhanden sind, " "vertausch dies den Kommentar und den Namen" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Zeige Datenbank-Kommentar anstelle des Namens" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5092,30 +5080,30 @@ msgstr "" "['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu verschachteln. Nur " "der Ordner erhält den Alias, der Tabellename bleibt unverändert" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Zeige Tabellen-Kommentar anstelle des Namens" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Tabellen-Kommentar als Tooltip anzeigen" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Markiere benutzte Tabellen und ermögliche die Anzeige von Tabellen mit " "gesperrten Tabellen" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Überspringe gesperrte Tabellen" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Erfordert das der SQL-Validator aktiviert ist" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5125,7 +5113,7 @@ msgstr "Erfordert das der SQL-Validator aktiviert ist" msgid "Password" msgstr "Passwort" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5133,11 +5121,11 @@ msgstr "" "[strong]Warnung:[/strong] erfordert das die PHP-Erweiterung SOAP oder PEAR " "SOAP installiert ist" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "SQL-Validator aktivieren" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5145,12 +5133,12 @@ msgstr "" "Falls Sie einen benutzerdefinierten Benutzernamen haben, hier angeben " "(Standard ist [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Benutzername" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5158,19 +5146,19 @@ msgstr "" "Schlage (wenn möglich) einen Datenbank-Namen im "Create Database" " "Formular vor oder lasse das Textfeld leer" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Schlage einen neuen Datenbank-Namen vor" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Warnhinweis auf der Hauptseite, wenn Suhosin erkannt wird" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin Warnhinweis" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5178,11 +5166,11 @@ msgstr "" "Textfeldgröße (in Spalten) im Bearbeitungsmodus. Dieser Wert wird vergrößert " "für Textfelder bei SQL-Abfragen (*2) und Abfragefenster (*1,25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Textfeldspalten" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5190,31 +5178,31 @@ msgstr "" "Textfeldgröße (in Zeilen) im Bearbeitungsmodus. Dieser Wert wird vergrößert " "für Textfelder bei SQL-Abfragen (*2) und Abfragefenster (*1,25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Textfeldzeilen" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Titelleiste des Browserfensters wenn eine Datenbank ausgewählt ist" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Titelleiste des Browserfensters wenn nichts ausgewählt ist" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Standardtitel" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Titelleiste des Browserfensters wenn ein Server ausgewählt ist" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Titelleiste des Browserfensters wenn eine Tabelle ausgewählt ist" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5226,27 +5214,27 @@ msgstr "" "For) Header, der von dem proxy 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR" "[/kbd] kommt, vertrauen soll" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste der Vertrauenswürdigen Proxies für IP Filter" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Verzeichnis auf dem Server zum Upload von zu importierenden Dateien" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Upload Verzeichnis" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Erlaube Suche in der gesammten Datenbank" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Datenbank Suche" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5254,11 +5242,11 @@ msgstr "" "Wenn deaktiviert, können Benutzer – unabhängig von der Checkbox rechts – " "keine der untenstehenden Einstellungen ändern" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Aktiviere den Reiter "Entwickler" in den Einstellungen" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5268,19 +5256,19 @@ msgstr "" "Abfragen. In libraries/import.lib.php sind die Voreinstellungen, wieviele " "Abfragen ein Statement enthalten darf." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Auswirkungen von Mehrfachbefehlen zeigen" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Auf neue Version prüfen" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Aktiviere die Prüfung auf Aktualisierungen auf der Hauptseite" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5289,7 +5277,7 @@ msgid "Version check" msgstr "Versionsüberprüfung" # Maybe wikipedia links should point to $lang.wikipedia.org, eg http://de.wikipedia.org/wiki/ZIP-Dateiformat -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5297,7 +5285,7 @@ msgstr "" "[a@http://de.wikipedia.org/wiki/ZIP-Dateiformat]ZIP[/a]-Kompression für " "Import- und Exportoperationen aktivieren" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5317,47 +5305,47 @@ msgstr "HTTP-Authentifizierung" msgid "Signon authentication" msgstr "Signon-Authentifizierung" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV mit LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Kalkulationstabelle" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Schnell" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Benutzerdefiniert" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Export-Optionen der Datenbank" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV-Daten für MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document Text" @@ -5534,9 +5522,8 @@ msgstr "Erzeuge Tabelle" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Name" @@ -5883,7 +5870,7 @@ msgid "Hide" msgstr "Verstecken" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Darstellungsumwandlung" @@ -6830,7 +6817,7 @@ msgstr "Ungültige Anzahl an Spalten im CSV-Import in Zeile %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Tabellenname" @@ -7528,7 +7515,7 @@ msgstr "Parameter" msgid "Direction" msgstr "Richtung" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Länge/Werte" @@ -7794,7 +7781,7 @@ msgstr "Inhalt" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Attribute" @@ -8094,7 +8081,7 @@ msgstr "Die Tabelle scheint leer zu sein!" msgid "Tracking of %s.%s is activated." msgstr "Tracking der Tabelle %s.%s ist aktiviert." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8106,7 +8093,7 @@ msgstr "" "einfaches Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein " "Backslash vor das Zeichen. (z. B.: '\\\\xyz' oder 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8114,13 +8101,13 @@ msgstr "" "Bitte geben Sie jeweils nur einen Standardwert ohne Escape- oder " "Anführungszeichen an, und verwenden Sie dieses Format: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Index" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8129,11 +8116,11 @@ msgstr "" "Um eine Liste aller verfügbaren MIME-Typen-Umwandlungen und deren Optionen " "zu sehen, klicken Sie bitte auf %sUmwandlungen%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Umwandlungsoptionen" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8145,34 +8132,34 @@ msgstr "" "einfaches Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein " "Backslash vor das Zeichen. (z. B.: '\\\\xyz' oder 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "ENUM oder SET Daten zu lang?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Mehr Platz zum Editieren" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Kein(e)" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Wie definiert:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primärschlüssel" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Volltext" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8181,25 +8168,25 @@ msgstr "" "Für diese Umwandlung ist keine Beschreibung verfügbar.
Für weitere " "Informationen wenden Sie sich bitte an den Autoren der Funktion %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "%s Spalte(n) einfügen" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Sie müssen mindestens eine Spalte hinzufügen." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Tabellenformat" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "PARTITION Definition" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Wert hinzufügen" @@ -13080,6 +13067,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertikal[/kbd] oder eine Zahl, welche die " +#~ "maximale Menge angibt, für die das vertikale Modell genutzt werden soll" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Anzeigerichtung für das Ändern/Erstellen von Spalten" + #~ msgid "Create table on database %s" #~ msgstr "Neue Tabelle in Datenbank %s erstellen" diff --git a/po/el.po b/po/el.po index 1deda454a9..d8ed289867 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-26 13:10+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" @@ -66,7 +66,7 @@ msgstr "Αναζήτηση" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Σχόλιο βάσης: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Σχόλια πίνακα" @@ -140,7 +140,7 @@ msgstr "Σχόλια πίνακα" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Στήλη" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Τύπος" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Κενό" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Προεπιλογή" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Σύνδεση με" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Σχόλια" @@ -313,14 +313,14 @@ msgstr "Μόνο τα δεδομένα" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE πριν την αντιγραφή" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" @@ -335,8 +335,8 @@ msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομέν #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματος" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -668,7 +668,7 @@ msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -730,7 +730,7 @@ msgstr "Περιληπτικός πίνακας δεδομένων" msgid "Tracked tables" msgstr "Παρακολουθούμενοι πίνακες" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -805,12 +805,12 @@ msgstr "Παρακολούθηση πίνακα" msgid "Database Log" msgstr "Καταγραφή Βάσης Δεδομένων" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Τιμές για τη στήλη «%s»" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Εισαγωγή κάθε τιμής σε διαφορετικό πεδίο." @@ -1143,7 +1143,7 @@ msgstr "Επαναφόρτωση δικαιωμάτων" msgid "Removing Selected Users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Κλείσιμο" @@ -1151,7 +1151,7 @@ msgstr "Κλείσιμο" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Επεξεργασία" @@ -1367,7 +1367,7 @@ msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στι #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1599,7 +1599,7 @@ msgstr "" "Απέτυχε η δημιουργία καννάβου διαγράμματος με την εισαγωγή ρυθμίσεων. " "Επαναφορά στην προεπιλεγμένη ρύθμιση..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1642,7 +1642,7 @@ msgstr "Χρησιμοποιημένη μεταβλητή / τύπος" msgid "Test" msgstr "Έλεγχος" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1770,7 +1770,7 @@ msgstr "Χρόνος εκτέλεσης ερωτήματος" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2297,7 +2297,7 @@ msgstr "Δεν ορίστηκε ευρετήριο!" msgid "Indexes" msgstr "Ευρετήρια" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2335,7 +2335,7 @@ msgstr "" "Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να " "απομακρυνθεί." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2650,18 +2650,18 @@ msgid "shared" msgstr "κοινόχρηστο" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Πίνακες" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2739,7 +2739,7 @@ msgstr "" "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις " "σας." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2811,7 +2811,7 @@ msgstr "Η MySQL επέστρεψε το μήνυμα: " msgid "Failed to connect to SQL validator!" msgstr "Αδύνατη η σύνδεση στο εγκυροποιητή SQL!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Ανάλυση SQL" @@ -2823,11 +2823,11 @@ msgstr "Χωρίς ανάλυση SQL" msgid "Without PHP Code" msgstr "χωρίς κώδικα PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Ανανέωση" @@ -2836,7 +2836,7 @@ msgstr "Ανανέωση" msgid "Skip Validate SQL" msgstr "Παράβλεψη επικύρωσης SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Επικύρωση SQL" @@ -2941,20 +2941,20 @@ msgid "Click to toggle" msgstr "Πατήστε για εναλλαγή" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Δομή" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3157,7 +3157,7 @@ msgid "Set value: %s" msgstr "Ορισμός τιμής: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Επαναφορά προεπιλεγμένης τιμής" @@ -3321,66 +3321,54 @@ msgid "Default display direction" msgstr "Προεπιλεγμένη κατεύθυνση προβολής" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]οριζόντια[/kbd], [kbd]κάθετα[/kbd] ή ένας αριθμός που δείχνει το " -"μέγιστο όπου χρησιμοποιείται το κάθετο μοντέλο" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Προβολή κατεύθυνσης για αλλαγή/δημιουργία στηλών" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Προβαλόμενη καρτέλα κατά το άνοιγμα της βάσης δεδομένων" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Προεπιλεγμένη καρτέλα βάσης δεδομένων" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Προβαλόμενη καρτέλα κατά το άνοιγμα του διακομιστή" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Προεπιλεγμένη καρτέλα διακομιστή" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Προβαλόμενη καρτέλα κατά το άνοιγμα ενός πίνακα" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Προεπιλεγμένη καρτέλα πίνακα" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά ως προεπιλογή" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Εμφάνιση λίστας βάσεων δεδομένων ως λίστα και όχι ως αναδυόμενο μενού" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Προβολή βάσεων δεδομένων ως λίστα" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Εμφάνιση λίστας διακομιστών ως λίστα και όχι ως αναδυόμενο μενού" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Προβολή διακομιστών ως λίστα" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3388,36 +3376,36 @@ msgstr "" "Απενεργοποιεί τις λειτουργίες μαζικής συντήρησης πινάκων, όλως " "βελτιστοποίηση ή επισκευή των επιλεγμένων πινάκων μιας βάσης δεδομένων." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Απενεργοποίηση συντήρησης πολλαπλών πινάκων" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Επεξεργασία ερωτημάτων SQL σε αναδυόμενο παράθυρο" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Επεξεργασία σε παράθυρο" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Προβολή σφαλμάτων" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Συγκέντρωση σφαλμάτων" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" "Προβολή εικονιδίων για μηνύματα προειδοποίησης, σφαλματος και πληροφοριών" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Εικονικά σφάλματα" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3425,205 +3413,205 @@ msgstr "" "Ορίστε τον αριθμό των δευτερολέπτων που επιτρέπεται να εκτελεστεί κώδικας " "([kbd]0[/kbd] για εκτέλεση χωρίς όριο)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Μέγιστος χρόνος εκτέλεσης" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Αποστολή" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Σύνολο χαρακτήρων αρχείου" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Μορφοποίηση" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Συμπίεση" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γραμμή" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Στήλες που περικλείονται από" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Τα πεδία χρησιμοποιούν το χαρακτήρα διαφυγής" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Αντικατάσταση τιμής NULL με" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Απομάκρυνση χαρακτήρων CRLF μέσα στις στήλες" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Στήλες που τελειώνουν με" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Γραμμές που τελειώνουν σε" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Έκδοση Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Πρότυπο ονόματος βάσης δεδομένων" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Πρότυπο ονόματος διακομιστή" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Πρότυπο ονόματος πίνακα" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Απόρριψη πίνακα" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Συμπερίληψη λεζάντας πίνακα" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Λεζάντα πίνακα" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Συνεχής λεζάντα πίνακα" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Κλειδί ετικέτας" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Τύπος MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Συσχετίσεις" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Μέθοδος εξαγωγής" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Αποθήκευση στο διακομιστή" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Αντικατάσταση αρχείου(ων)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Πρότυπο απομνημόνευσης ονοματος αρχείου" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Χρήση ανάποδων εισαγωγικών στα ονόματα των πινάκων και των στηλών" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Κατάσταση συμβατότητας SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "Επιλογές CREATE TABLE:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Δημιουργία/Ενημέρωση/Έλεγχος ημερομηνιών" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Χρήση εισαγωγών με καθυστέρηση" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Απενεργοποίηση ελέγχων μη διακριτών κλειδιών" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Χρήση δεκαεξαδικού για τον BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Χρήση παραβλεφθέντων εισαγωγών" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Σύνταξη για χρήση στην εισαγωγή δεδομένων" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Μέγιστο μήκος δημιουργηθέντος ερωτήματος" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Εξαγωγή τύπου" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Συμπερίληψη εξαγωγής στη συναλλαγή" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Εξαγωγή χρόνου σε UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Εξαναγκασμένη ασφαλής σύνδεση όσο χρησιμοποιείται το phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Εξαναγκασμένη σύνδεση SSL" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3631,148 +3619,148 @@ msgstr "" "Ταξινόμηση για αντικείμενα σε αναδυόμενο μενού foreing key; [kbd]content[/" "kbd] είναι τα αναφερθέντα δεδομένα, [kbd]id[/kbd] είναι η τιμή κλειδιού" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Αναδυόμενη σειρά μη διακριτού κλειδιού" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Μια αναδυόμενη λίστα θα χρησιμοποιηθεί, αν υπάρχουν λίγα αντικείμενα" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Όριο μη διακριτού κλειδιού" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Κατάσταση αναζήτησης" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Προσαρμοσμένη κατάσταση αναζήτησης" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Προσαρμογή προεπιλεγμένων επιλογών" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Δημιουργός" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Ρυθμίσεις για δημιουργούς του phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Κατάσταση επεξεργασίας" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Προσαρμοσμένη κατάσταση επεξεργασίας" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Προεπιλογές εξαγωγής" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Προσαρμογή προεπιλεγμένων επιλογών εξαγωγής" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Χαρακτηριστικά" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Γενικά" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Ορίστε ορισμένες κοινώς χρησιμοποιούμενες επιλογές" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Προεπιλογές εισαγωγής" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Προσαρμογή προεπιλεγμένων επιλογών εισαγωγής" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Εισαγωγή / εξαγωγή" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Ορισμός φακέλων εισαγωγής-εξαγωγής και επιλογές συμπίεσης" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "Έγγραφο LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Επιλογές προβολής βάσεων δεδομένων" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Πλαίσιο πλοήγησης" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Προσαρμογή εμφάνισης του πλαισίου πλοήγησης" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Διακομιστές" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Επιλογές προβολής διακομιστών" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Επιλογές προβολής πινάκων" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Βασικό πλαίσιο" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Excel" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα - ODΤ" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Άλλες ρυθμίσεις πυρήνα" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Ρυθμίσεις που δεν ανήκουν κάπου αλλού" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Τίτλοι σελίδας" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3782,22 +3770,22 @@ msgstr "" "[a@Documentation.html#cfg_TitleTable]τεκμηρίωση[/a] για μαγικά κείμενα που " "μπορούν να χρησιμοποιηθούν για ειδικές τιμές." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Παράθυρο ερωτήματος" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Προσαρμόστε επιλογές παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Ασφάλεια" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3805,23 +3793,23 @@ msgstr "" "Σημειώστε ότι το phpMyAdmin είναι απλά ένα περιβάλλον εργασίας και τα " "χαρακτηριστικά του δεν περιορίζουν τη MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Βασικές ρυθμίσεις" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Πιστοποιίηση" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Ρυθμίσεις πιστοποίησης" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Προσαρμογή διακομιστή" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3829,15 +3817,15 @@ msgstr "" "Προχωρημένη ρύθμιση διακομιστή, μην αλλάξετε αυτές τις ρυθμίσεις εκτός και " "αν ξέρετε που παραπέμπουν" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Εισάγετε παραμέτρους σύνδεσης διακομιστή" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Χώρος αποθήκευση ρυθμίσεων" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3847,11 +3835,11 @@ msgstr "" "χαρακτηριστικά. Δείτε την [a@Documentation.html#linked-tables]υποδομή " "συνδεδεμένων πινάκων[/a] στην τεκμηρίωση" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Παρακολούθηση αλλαγών" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3859,44 +3847,44 @@ msgstr "" "Η παρακολούθηση των αλλαγών έγινε στη βάση δεδομένων. Απαιτεί το χώρο " "αποθήκευσης ρυθμίσεων του phpMyAdmin." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Προσαρμογή επιλογών εξαγωγής" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Προσαρμογή επιλογών εισαγωγής" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Προσαρμογή πλαισίου πλοήγησης" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Προσαρμογή βασικού πλαισίου" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Ερωτήματα SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Χώρος Ερωτήματος SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Προσαρμογή εμφανιζόμενων συνδέσμων στους χώρους ερωτημάτων SQL" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Ρυθμίσεις ερωτημάτων SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "Εγκυροποιητής SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3909,44 +3897,44 @@ msgstr "" "Εγκυροποιητής SQL Mimer[/a], Πνευματικά Δικαιώματα 2002 Upright Database " "Technology. Με επιφύλαξη παντός δικαιώματος.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Εκκίνηση" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Προσαρμογή σελίδας εκκίνησης" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Καρτέλες" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Επιλέξτε πως θα λειτουργούν οι καρτέλες" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Πεδία κειμένου" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Προσαρμογή πεδίων εισαγωγής κειμένου" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Κείμενο Texy" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Προειδοποιήσεις" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" "Απενεργοποίηση ορισμένων προειδοποιήσεων που εμφανίζονται στο phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3954,15 +3942,15 @@ msgstr "" "Ενεργοποιήστε τη συμπίεση [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] για " "τις λειτουργίες εισαγωγής και εξαγωγής" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Επιπλέον παράμετροι για την iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3970,11 +3958,11 @@ msgstr "" "Αν ενεργοποιηθεί, το phpMyAdmin συνεχίζει να υπολογίζει ερωτήματα πολλαπλών " "δηλώσεων ακόμα και αν ένα από τα ερωτήματα αποτύχει" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Παράβλεψη σφαλμάτων πολλαπλών δηλώσεων" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3985,21 +3973,21 @@ msgstr "" "την εισαγωγή μεγάλων αρχείων, αν και μπορεί να μπορεί να διακόψει τις " "διαδικασίες." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Μερική εισαγωγή: να επιτρέπεται η διακοπή" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Να μην γίνετια ακύρωση σε σφάλμα INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Αντικατάσταση δεδομένων πίνακα με το αρχείο" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4007,88 +3995,88 @@ msgstr "" "Προεπιλεγμένη μορφή; να ληφθεί υπόψη ότι αυτή η λίστα εξαρτάται από την " "τοποθεσία (βάση δεδομένων, πίνακας) και ότι μόνο η SQL είναι πάντα διαθέσιμη" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Μορφή εισαχθέντος αρχείου" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Χρήση λέξης-κλειδί LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Ονόματα στήλης στην πρώτη γραμμή" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Να μην γίνει εισαγωγή άδειων γραμμών" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Προσθήκη νομισμάτων (€5,00 αντί 5,00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά (12.00% αντί .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Αριθμός ερωτημάτων που θα παραβλεφθούν από την αρχή" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Μερική εισαγωγή: παράβλεψη ερωτημάτων" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Να μην γίνεται AUTO_INCREMENT για μηδενικές τιμές" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Αρχική κατάσταση κυλυομένων" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Πόσες γραμμές μπορούν να εισαχθούν μονομιάς" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Αριθμός εισαχθέντων γραμμών" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Προορισμός για εικονίδιο γρήγορης πρόσβασης" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Προβολή λογοτύπου στο αριστερό πλαίσιο" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Προβολή λογοτύπου" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Προβολή επιλεγμένου διακομιστή επάνω στο αριστερό πλαίσιο" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Προβολή επιλογής διακομιστών" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Ελάχιστος αριθμός πινάκων για προβολή του πλαισίου φίλτρου πίνακα" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Κείμενο που διαχωρίζει τις βάσεις δεδομένων σε διαφορετικά επίπεδα" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Διαχωριστικό δέντρου βάσης δεδομένων" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4096,41 +4084,41 @@ msgstr "" "Μόνο απλή έκδοση; δενδροειδής προβολή βάσεων δεδομένων (προσδορίζεται από το " "διαχωριστικό που ορίζεται παρακάτω)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Δενδροειδής προβολή βάσεων δεδομένων" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" "Απενεργοποιήστε το αν θέλετε να δείτε όλες τις βάσεις δεδομένων μονομιάς" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Χρήση απλής έκδοσης" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Μέγιστο βάθος δέντρου πίνακα" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Κείμενο που διαχωρίζει τους πίνακες σε διαφορετικά επίπεδα" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Διαχωριστικό δέντρου πινάκων" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" "Ο Σϋνδεσμος URL όπου θα τοποιθετηθεί στο λογότυπο στο πλαίσιο πλοήγησης" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Διεύθυνση URL συνδέσμου λογοτύπου" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4138,48 +4126,48 @@ msgstr "" "Ανοίγει τη συνδεδεμένη σελίδα στο κύριο παράθυρο ([kbd]main[/kbd]) ή σε νέο " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Προορισμός συνδέσμου λογοτύπου" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Επισήμανση διακομιστή με τον δείκτη του ποντικιού" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Ενεργοποίηση επισήμανσης" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" "Μέγιστος αριθμός πρόσφατα χρησιμοποιημένων πινάκων. ορίστε το σε 0 για " "απενεργοποιήση" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Πρόσφατα χρησιμποιημένοι πίνακες" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Χρήση καρτελών με λιγότερα γραφικά" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Απλές καρτέλες" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Μέγιστος αριθμός χαρακτήρων που φαίνεται σε μη αριθμητική στήλη στην προβολή " "φυλλομετρητή" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Όριο χαρακτήρων στήλης" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4190,11 +4178,11 @@ msgstr "" "διακομιστή. Ορίζοντάς το σε FALSE είναι εύκολο να ξεχάσετε να αποσυνδεθείτε " "από άλλους διακομιστές όταν συνδέεστε σε πολλούς." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Διαγραφή όλων των cookies με την αποσύνδεση" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4202,11 +4190,11 @@ msgstr "" "Ορίζει αν η προηγούμενη σύνδεση πρέπει να επανακληθεί ή όχι σε κατάσταση " "επικύρωσης cookie" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Επανάκληση ονόματος χρήστη" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4218,54 +4206,54 @@ msgstr "" "για την τρέχουσα συνεδρία και θα διαγραφεί μόλις κλείσετε τον φυλλομετρητή. " "Αυτό προτείνεται για μη αξιόπιστα περιβάλλοντα." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Αποθήκευση cookie σύνδεσης" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Ορίστε χρονικά (σε δευτερόλεπτα) την ισχύ ενός cookie σύνδεσης" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Εγκυρότητα cookie σύνδεσης" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Διπλό μέγεθος του textarea για στήλες LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Μεγαλύτερο textarea για LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Χρήση εικονιδίων στη βασική σελίδα" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Μέγιστος αριθμός χαρακτήρων όταν προβάλεται ένα ερώτημα SQL" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Μέγιστο μήκος προβολής SQL" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Οι χρήστες δεν μπορούν να ορίσουν μεγαλύτερη τιμή" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Μέγιστος αριθμός βάσεων δεδομένων που προβάλονται στο αριστερό πλαίσιο και " "στη λίστα βάσεων δεδομένων" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Μέγιστος αριθμός βάσεων δεδομένων" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4275,19 +4263,19 @@ msgstr "" "αποτέλεσμα. Αν το αποτέλεσμα περιέχει περισσότερες γραμμές, θα εμφανίζονται " "σύνδεσμοι «Προηγούμενο» και «Επόμενο»." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Μέγιστος αριθμός γραμμών για προβολή" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Μέγιστος αριθμός πινάκες που θα προβάλονται σε λίστα πινάκων" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Μέγιστος αριθμός πινάκων" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4295,11 +4283,11 @@ msgstr "" "Απενεργοποιήση της προεπιλεγμένης προειδοποιησης που εμφανίζεται αν το " "mcrypt λείπει γιατην πιστοποίηση cookie" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "προειδοποιηση mcrypt" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4307,46 +4295,46 @@ msgstr "" "Ο αριθμός των bytes που επιτρέπεται να δεσμευσει ένας κώδικας, π.χ. [kbd]32M" "[/kbd] ([kbd]0[/kbd] για απεριόριστη)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Όριο μνήμης" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "Αυτοί είναι οι σύνδεσμοι Επεξεργασία, Αντιγραφή και Διαγραφή" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Που να προβάλονται οι σύνδεσμοι γραμμής πίνακα" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" "Χρήση φυσικής ταξινόμησης για την ταξινόμηση ονομάτων πινάκων και βάσεων " "δεδομένων" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Φυσική ταξινόμηση" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Χρήση μόνο εικονιδίων, μόνο κειμένου ή και τα δύο" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Γραμμή πλοήγησης με εικονίδια" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Χρήση εξαγόμενου GZip buffering για αυξημένη ταχύτητα σε μεταφορές HTTP" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Εξαγόμενο GZip buffering" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4354,19 +4342,19 @@ msgstr "" "[kbd]SMART[/kbd] - π.χ. φθίνουσα ταξινόμηση για στήλες τύπου TIME, DATE, " "DATETIME και TIMESTAMP, αύξουσα ταξινόμηση στα υπόλοιπα" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Προεπιλεγμένη ταξινόμηση" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Χρήση εξαναγκασμένων συνδέσεων στις βάσεις δεδομένων MySQL" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Επιμένουσες συνδέσεις" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4376,23 +4364,23 @@ msgstr "" "λεπτομερούς δομής της βάσης δεδομένων, αν κάποιο από τους απαραίτητους " "πίνακες για την αποθήκευση ρυθμίσεων του phpMyAdmin δεν βρεθεί" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Λείπουν πίνακες αποθήκευσης ρυθμίσεων του phpMyAdmin" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Λειτουργίες πίνακα με εικονίδια" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Αποτροπή επεξεργασίας στηλών BLOB και BINARY" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Προστασία δυαδικών στηλών" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4402,126 +4390,126 @@ msgstr "" "ρυθμίσεων phpMyAdmin). Αν απενεργοποιηθεί, λειτουργούν ρουτίνες JS για " "προβολή του ιστορικού ερωτημάτων (χάνεται με το κλείσιμο του παραθύρου)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Μόνιμο ιστορικό ερωτημάτων" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Πόσα ερωτήματα παραμένουν στο ιστορικό" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Μέγεθος ιστορικού ερωτημάτων" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Προβολή καρτέλας με το άνοιγμα νέου παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Προεπιλεγμένη καρτέλα παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Ύψος παραθύρου ερωτήματος (σε εικονοστοιχεία)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Ύψος παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Πλάτος παραθύρου ερωτήματος (σε εικονοστοιχεία)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Πλάτος παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Επιλέξτε ποιες συναρτήσεις θα χρησιμοποιηθούν για μετατροπή συνόλων " "χαρακτήρων" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Μηχανή επανακωδικοποίησης" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" "Όταν μεταικινήστε μταξύ πινάκων, η ταξινόμηση για κάθε πίανακα " "απομνημονεύεται" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Απομνημόνευση ταξινόμησης πινάκων" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Επανάληψη κεφαλίδων κάθε Χ κελιά. Το [kbd]0[/kbd] απενεργοποιεί το " "χαρακτηριστικό" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Επανάληψη κεφαλίδων" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Προβλή κουμπιού βοήθειας αντί κειμένου Τεκμηρίωσης" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Προβολή κουμπιού βοήθειας" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "Αποθήκευση όλων των επεξεργασμένων κελιών μαζί" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Ο φάκελος στον διακομιστή όπου οι εξαγωγές μπορούν να αποθηκευτούν" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Φάκελος αποθήκευσης" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Αφήστε το άδειο αν δεν χρησιμοποιηθεί" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Σειρά πιστοποίησης φιλοξενητή" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Αφήστε κενό για προεπιλογές" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Κανόνες πιστοποίησης φιλοξενητή" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Δικαίωμα συνδέσεων χωρίς κωδικό πρόσβασης" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Δικαίωμα ριζικής σύνδεσης" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "Το βασίλειο του HTTP Basic Auth εμφανίζεται όταν γίνεται πιστοποίηση HTTP" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "Βασίλειο HTTP" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4531,19 +4519,19 @@ msgstr "" "υλικού SweKey[/a] (δεν βρίσκεται στο ριζικό φάκελο του εγγράφου; " "προτείνεται: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "Αρχείο ρυθμίσεων SweKey" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Μέθοδος επικύρωσης για χρήση" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Τύπος επικύρωσης" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4551,11 +4539,11 @@ msgstr "" "Αφήστε κενό αν δεν υπάρχει [a@http://wiki.phpmyadmin.net/pma/bookmark]" "σελιδοδείκτης[/a] υποστήριξης, προτείνεται: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Πίνακας σελιδοδεικτών" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4563,33 +4551,33 @@ msgstr "" "Αφήστε κενό για να μη υπάρχουν σχόλια/τύποι mime στις στήλες, σας " "προτείνεται: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Πίνακας πληροφοριών στήλης" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Συνδεση συμπίεσης στο διακομιστή MySQL" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Σύνδεση συμπίεσης" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Πως να συνδεθείτε στο διακομιστή, κρατήστε το [kbd]tcp[/kbd] αν δεν είστε " "σίγουρος/η" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Τύπος σύνδεσης" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Έλεγχος κωδικού πρόσβασης χρήστη" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4598,19 +4586,19 @@ msgstr "" "Περισσότερες πληροφορίες είναι διαθέσιμες στο [a@http://wiki.phpmyadmin.net/" "pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Έλεγχος χρήστη" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Απαρίθμηση πινάκων όταν εμφανίζεται η λίστα βάσεων δεδομένων" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Απαρίθμηση πινάκων" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4618,11 +4606,11 @@ msgstr "" "Αφήστε το κενό για καμία υποστήριξη Σχεδιαστή. Προτείνεται: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Πίνακας σχεδιαστή" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4631,28 +4619,28 @@ msgstr "" "aid=1849494]PMA bug tracker[/a] και στο [a@http://bugs.mysql.com/19588]MySQL " "Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Απενεργοποίηση χρήσης του INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Ποια επέκταση PHP να χρησιμοποιήσετε. Προτείνεται η mysqli αν υποστηρίζεται" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Επέκταση PHP για χρήση" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Απόκρυψη βάσεων δεδομένων που ταιριάζουν την κανονική έκφραση (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Απόκρυψη βάσεων δεδομένων" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4660,23 +4648,23 @@ msgstr "" "Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Πίνακας ιστορικού ερωτημάτων SQL" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Ονομασία θέσης όπου εκτελείται ο διακομιστής MySQL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Ονομασία θέσης διακομιστή" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Διεύθυνση URL αποσύνδεσης" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" @@ -4684,19 +4672,19 @@ msgstr "" "Αυτη η ρύθμιση διασφαλίζει ότι διατηρούνται N (N = MaxTableUiprefs) νέες " "εγγραφές στο «table_uiprefs» και αυτόματα διαγράφονται παλαιές εγγραφές" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Μέγιστος αριθμός εγγραφών που αποθηκεύονται στον πίνακα «table_uiprefs»" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Δοκιμάστε να συνδεθείτε χωρίς κωδικό πρόσβασης" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Σύνδεση χωρίς κωδικό πρόσβασης" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4711,30 +4699,30 @@ msgstr "" "τους σε σειρά και χρησιμοποιώντας το [kbd]*[/kbd] στο τέλος για να δείξετε " "τις υπόλοιπες σε αλφαβητική σειρά." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Εμφάνιση μόνο των βάσεων δεδομένων από λίστα" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Αφήστε το άδειο αν δεν χρησιμοποιείτε ρύθμισμένη επικύρωση" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Κωδικός πρόσβασης για ρυθμισμένη επικύρωση" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Αφήστε το κενό για μη υποστήριξη σχεδίου PDF, προτείνεται: [kbd]pma_pdf_pages" "[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "Σχέδιο PDF: πίνακας σελίδων" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4745,20 +4733,20 @@ msgstr "" "a] για λεπτομέρειες. Αφήστε κενό για να μην υπάρχει υποστήριξη. Προτείνεται: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Θύρα που αποκρίνεται ο διακομιστής MySQL. Αφήστε το άδειο για προεπιλογή" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Θύρα διακομιστή" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4766,11 +4754,11 @@ msgstr "" "Αφήστε το κενό για μη «μόνιμους» πρόσφατα χρησιμοποιημένους πίνακες μεταξύ " "συνεδριών, προτείνεται: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Πρόσφατα χρησιμοποιημένος πίνακας" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4779,19 +4767,19 @@ msgstr "" "pma/relation]συνδέσμων-συσχετίσεων[/a], σας προτείνεται: [kbd]pma_relation[/" "kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Πίνακας συσχετίσεων" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "Εντολή SQL που φέρνει τις διαθέσιμες βάσεις δεδομένων" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "Εντολή SHOW DATABASES" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4799,44 +4787,44 @@ msgstr "" "Δείτε τους [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]τύπους " "επικύρωσης[/a] για ένα παράδειγμα" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Ονομάσία συνεδρίας σύνδεσης" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Διεύθυνση URL σύνδεσης" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Η υποδοχή στην οποία ο διακομιστής MySQL αποκρίνεται. Αφήστε το κενό για " "προεπιλογή" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Υποδοχή διακομιστή" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Ενεργοποιήση SSL για σύνδεση στο διακομιστή MySQL" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Χρήση SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "Σχέδιο PDF: συντεταγμένες πίνακα" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4844,11 +4832,11 @@ msgstr "" "Ο πίνακας που περιγράφει τις προβαλλόμενες στήλες - αφήστε το κενό για να " "μην υποστηρίζεται - προτείνεται: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Πίνακας προβολής στηλών" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4856,11 +4844,11 @@ msgstr "" "Αφήστε το κενό για μη «μόνιμο» περιβάλλον εργασίας ρυθμίσεων πινάκων μεταξύ " "συνεδριών, προτείνεται: [kbd]pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Πίνακας προτιμήσεων UI" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4868,11 +4856,11 @@ msgstr "" "Όταν δηλωθεί DROP DATABASE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην " "καταγραφή κατά τη δημιουργία βάσης δεδομένων." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Προσθήκη της εντολής DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4880,11 +4868,11 @@ msgstr "" "Όταν δηλωθεί DROP TABLE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην " "καταγραφή κατά τη δημιουργία πίνακα." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Προσθήκη DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4892,21 +4880,21 @@ msgstr "" "Όταν δηλωθεί DROP VIEW IF EXISTS θα προστεθεί ως πρώτη γραμμή στην καταγραφή " "κατά τη δημιουργία προβολής." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Προσθήκη DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Ορίζει τη λίστα των δηλώσεων που χρησιμοποιεί η αυτόματη δημιουργία για νέες " "εκδόσεις." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Δηλώσεις προς παρακολούθηση" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4914,11 +4902,11 @@ msgstr "" "Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Πίνακας ιστορικού παρακολούθησης ερωτημάτων SQL" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4926,11 +4914,11 @@ msgstr "" "Αν ο μηχανισμός παρακολούθησης δημιουργεί εκδόσεις για πίνακες και προβολές " "αυτόματα." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Αυτόματη δημιουργία εκδόσεων" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" @@ -4938,15 +4926,15 @@ msgstr "" "Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη στη βάση δεδομένων, " "προτείνεται: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Πίνακας αποθήκευσης προτιμήσεων χρήστη" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Χρήστης για ρυθμισμένη επικύρωση" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4954,11 +4942,11 @@ msgstr "" "Απενεργοποιήστε το αν γνωρίζεται ότι οι πίνακες pma_* είναι ενημερωμένοι. " "Αυτό αποτρέπει ελέγχους συμβατότητας και αυξάνει την απόδοση" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Φιλοχρηστικός έλεγχος" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4966,19 +4954,19 @@ msgstr "" "Μια φιλοχρηστική περιγραφή αυτού του διακομιστή. Αφήστε το κενό για να " "εμφανίζεται το όνομα." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Φιλοχρηστικό όνομα διακομιστή" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Αν θα εμφανίζεται στο χρήστη ένα κουμπί «εμφάνιση όλων (γραμμών)»" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Δικαίωμα προβολή όλων των γραμμών" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4989,15 +4977,15 @@ msgstr "" "ρυθμίσεων και αυτό δεν περιορίζει τη δυνατότητα άμεσης εκτέλεσης της ίδιας " "εντολής" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Εμφάνιση φόρμας αλλαγής κωδικού πρόσβασης" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Εμφάνιση φόρμας δημιουργίας βάσης δεδομένων" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" @@ -5005,11 +4993,11 @@ msgstr "" "Ορίζεται αν θα εμφανίζετια ή όχι η επιλογή κατεύθυνσης προβολής κατά την " "περιήγηση σε πίνακα" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Προβολή κατεύθυνσης προβολής" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -5017,27 +5005,27 @@ msgstr "" "Ορίζει αν θα εμφανίζονται οι τύποι των πεδίων σε κατάσταση επεξεργασίας/" "εισαγωγής" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Εμφάνιση τύπων πεδίου" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Προβολή των πεδίων συναρτήσεων σε κατάσταση επεξεργασίας εισαγωγής" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Εμφάνιση πεδίων συναρτήσεων" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "Αν θα εμφανίζεται επεξήγηση ή όχι" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "Εμφάνιση επεξήγησης" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5045,35 +5033,35 @@ msgstr "" "Εμφανίζει σύνδεσμο για την τεκμηρίωση της συνάρτησης [a@http://php.net/" "manual/function.phpinfo.php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Εμφάνιση συνδέσμου phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Εμφάνιση λεπτομερών πληροφοριών διακομιστή MySQL" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Ορίζει αν τα δημιουργημένα ερωτήματα SQL από το phpMyAdmin πρέπει να " "προβάλονται" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Εμφάνιση ερωτημάτων SQL" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Δικαίωμα προβολής στατιστικών βάσης δεδομένων και πινάκων (π.χ. χρήση χώρου " "στο δίσκο)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Εμφάνιση στατιστικών" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5081,11 +5069,11 @@ msgstr "" "Αν οι επεξηγήσεις είναι ενεργοποιημένες και έχει οριστεί σχόλιο για τη βάση " "δεδομένων, αυτή η επιλογή θα αντικαταστήσει το όνομα με το σχόλιο" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Προβολή σχολίου βάσης δεδομένων αντί για το όνομα" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5097,30 +5085,30 @@ msgstr "" "$cfg['LeftFrameTableSeparator'], έτσι μόνο ο φάκελος καλείται όπως η " "ετικέτα, ενώ το όνομα του πίνακα δεν αλλάζει" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Προβολή σχολίου πίνακα αντί για το όνομά του" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Προβολή σχολίων πινάκων στις επεξηγήσεις" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Επισήμανση χρησιμοποιημένων πινάκων και ενεργοποίηση της δυνατότητας " "προβολής των βάσεων δεδομένων με κλειδωμένους πίνακες" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Παράβλεψη κλειδωμένων πινάκων" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Απαιτεί την ενεργοποίηση του Εγκυροποιητή SQL" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5130,7 +5118,7 @@ msgstr "Απαιτεί την ενεργοποίηση του Εγκυροποι msgid "Password" msgstr "Κωδικός πρόσβασης" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5138,11 +5126,11 @@ msgstr "" "[strong]Προειδοποίηση:[/strong] απαιτείται η επέκταση PHP SOAP ή η PEAR SOAP " "να έχει εγκατασταθεί" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Ενεργοποίηση του Εγκυροποιητή SQL" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5150,12 +5138,12 @@ msgstr "" "Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:[kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Όνομα χρήστη" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5163,19 +5151,19 @@ msgstr "" "Προτείνεται ένα όνομα βάσης δεδομένων στη φόρμα «Δημιουργία Βάσης " "δεδομένων» (αν είναι δυνατό) ή διατήρηση του πεδίου άδειου" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Πρόταση νέου ονόματος βάσης δεδομένων" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Μια προειδοποίηση εμφανίζεται στη βασική σελίδα αν βρεθεί το Suhosin" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "προειδοποίηση Suhosin" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5184,11 +5172,11 @@ msgstr "" "πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2) και το παράθυρο των " "ερωτημάτων (x1,25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Στήλες textarea" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5197,32 +5185,32 @@ msgstr "" "πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2) και το παράθυρο των " "ερωτημάτων (x1,25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Γραμμές textarea" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται μια βάση δεδομένων" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν δεν επιλέγεται τίποτα" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Προεπιλεγμένος τίτλος" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας διακομιστής" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας πίνακας" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5234,28 +5222,28 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) προερχόμενη από τη διεύθυνση 1.2.3.4:" "[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Λίστα αξιόπιστων διευθύνσεων IP για να επιτρέπεται/απαγορεύεται" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" "Φάκελος στο διακομιστή όπου μπορείτε να αποστείλετε αρχεία για εισαγωγή" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Φάκελος αποστολής" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Επιτρέπει την αναζήτηση εντός ολόκληρης της βάσης δεδομένων" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Χρήση αναζήτησης βάσης δεδομένων" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5263,11 +5251,11 @@ msgstr "" "Όταν απενεργοποιηθεί, οι χρήστες δεν μπορούν να ορίσουν καμιά από τις " "παρακάτω επιλογές, ανεξάρτητα από την επιλογή στα δεξιά" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Ενεργοποίηση της καρτέλας Δημιουργός στις ρυθμίσεις" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5277,21 +5265,21 @@ msgstr "" "δηλώσεων. Δείτε στο libraries/import.lib.php τις προεπιλογές για το πόσες " "δηλώσεις μπορεί να περιέχει ένα ερώτημα." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Φιλοχρηστικές πολλαπλές δηλώσεις" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Έλεγχος για τελευταία έκδοση" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Ενεργοποιεί τον έλεγχο για τη τελευταία έκδοση στη κεντρική σελίδα του " "phpMyAdmin" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5299,7 +5287,7 @@ msgstr "" msgid "Version check" msgstr "Έλεγχος έκδοσης" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5307,7 +5295,7 @@ msgstr "" "Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]" "ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5327,47 +5315,47 @@ msgstr "Πιστοποίηση HTTP" msgid "Signon authentication" msgstr "Σειρά επικύρωσης" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV με χρήση LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Έγγραφο Λογιστικού Φύλλου Ανοιχτού Κώδικα - ODS" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Γρήγορο" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Προσαρμοσμένο" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Επιλογές εξαγωγής βάσης δεδομένων" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "Μορφή CSV για δεδομένα MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Έγγραφο Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα - ODΤ" @@ -5543,9 +5531,8 @@ msgstr "Δημιουργία πίνακα" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Όνομα" @@ -5889,7 +5876,7 @@ msgid "Hide" msgstr "Απόκρυψη" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Μετατροπή περιηγητή" @@ -6839,7 +6826,7 @@ msgstr "Μη έγκυρο πλήθος πεδίων στο εισαχθέν CSV msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Ονομασία πίνακας" @@ -7531,7 +7518,7 @@ msgstr "Παράμετροι" msgid "Direction" msgstr "Κατεύθυνση" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Μήκος/Τιμές*" @@ -7792,7 +7779,7 @@ msgstr "Πίνακας περιεχομένων" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Χαρακτηριστικά" @@ -8088,7 +8075,7 @@ msgstr "Ο πίνακας φαίνεται να είναι άδειος!" msgid "Tracking of %s.%s is activated." msgstr "Παρακολούθηση του %s.%s ενεργοποιήθηκε." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8100,7 +8087,7 @@ msgstr "" "εισάγετε την ανάποδη κάθετο («\\») ή απλά εισαγωγικά («'»), προθέστε τα με " "ανάποδη κάθετο στην αρχή (για παράδειγμα '\\\\χψω' ή 'α\\'β')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8108,13 +8095,13 @@ msgstr "" "Για προκαθορισμένες τιμές, παρακαλώ εισάγετε μία τιμή, χωρίς χαρακτήρες " "διαφυγής ή εισαγωγικά, χρησιμοποιώντας τη μορφή: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Ευρετήριο" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8123,11 +8110,11 @@ msgstr "" "Για μία λίστα με τις διαθέσιμες μετατροπές και τις μετατροπές τύπου MIME, " "πατήστε %sπεριγραφές μετατροπών%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Επιλογές μετατροπής" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8139,34 +8126,34 @@ msgstr "" "εισαγωγικά («'») στις τιμές, χρησιμοποιείτε καθέτους (παράδειγμα '\\\\χψω' ή " "'α\\'β')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "Τα δεδομένα ENUM ή SET είναι πολύ μεγάλα;" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Λήψη περισσότερου χώρου επεξεργασίας" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Καμία" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Όπως ορίστηκε:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Πρωτεύον" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Πλήρες κείμενο" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8175,25 +8162,25 @@ msgstr "" "Δεν υπάρχει διαθέσιμη περιγραφή για αυτή τη μετατροπή.
Απευθύνθείτε " "στον δημιουργό της για να μάθετε τι κάνει η μετατροπή %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Προσθήκη %s στήλης(ών)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Μηχανή αποθήκευσης" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Ορισμός PARTITION" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Προσθήκη μιας τιμής" @@ -13101,6 +13088,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]οριζόντια[/kbd], [kbd]κάθετα[/kbd] ή ένας αριθμός που δείχνει το " +#~ "μέγιστο όπου χρησιμοποιείται το κάθετο μοντέλο" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Προβολή κατεύθυνσης για αλλαγή/δημιουργία στηλών" + #~ msgid "Create table on database %s" #~ msgstr "Δημιουργία νέου πίνακα στη βάση %s" diff --git a/po/en_GB.po b/po/en_GB.po index 2a082dbb81..f484639ed4 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-25 23:14+0200\n" "Last-Translator: Jørgen Thomsen \n" "Language-Team: english-gb \n" @@ -66,7 +66,7 @@ msgstr "Search" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Database comment: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Table comments" @@ -140,7 +140,7 @@ msgstr "Table comments" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Column" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Type" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Default" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Links to" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Comments" @@ -313,14 +313,14 @@ msgstr "Data only" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" @@ -335,8 +335,8 @@ msgstr "Switch to copied database" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Edit or export relational schema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -667,7 +667,7 @@ msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -729,7 +729,7 @@ msgstr "Data Dictionary" msgid "Tracked tables" msgstr "Tracked tables" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -804,12 +804,12 @@ msgstr "Track table" msgid "Database Log" msgstr "Database Log" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Values for the column \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Enter each value in a separate field." @@ -1133,7 +1133,7 @@ msgstr "Reloading Privileges" msgid "Removing Selected Users" msgstr "Removing Selected Users" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Close" @@ -1141,7 +1141,7 @@ msgstr "Close" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Edit" @@ -1357,7 +1357,7 @@ msgstr "Please add at least one variable to the series" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1581,7 +1581,7 @@ msgstr "" "Failed building chart grid with imported config. Resetting to default " "config..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1624,7 +1624,7 @@ msgstr "Used variable / formula" msgid "Test" msgstr "Test" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1752,7 +1752,7 @@ msgstr "Query execution time" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2269,7 +2269,7 @@ msgstr "No index defined!" msgid "Indexes" msgstr "Indexes" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2307,7 +2307,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2615,18 +2615,18 @@ msgid "shared" msgstr "shared" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tables" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2702,7 +2702,7 @@ msgstr "Invalid server index: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2774,7 +2774,7 @@ msgstr "MySQL said: " msgid "Failed to connect to SQL validator!" msgstr "Failed to connect to SQL validator!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Explain SQL" @@ -2786,11 +2786,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "Without PHP Code" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Create PHP Code" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Refresh" @@ -2799,7 +2799,7 @@ msgstr "Refresh" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Validate SQL" @@ -2903,20 +2903,20 @@ msgid "Click to toggle" msgstr "Click to toggle" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Structure" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3115,7 +3115,7 @@ msgid "Set value: %s" msgstr "Set value: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Restore default value" @@ -3277,66 +3277,54 @@ msgid "Default display direction" msgstr "Default display direction" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Display direction for altering/creating columns" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Tab that is displayed when entering a database" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Default database tab" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Tab that is displayed when entering a server" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Default server tab" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Tab that is displayed when entering a table" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Default table tab" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Show binary contents as HEX by default" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Show binary contents as HEX" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Show database listing as a list instead of a drop down" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Display databases as a list" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Show server listing as a list instead of a drop down" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Display servers as a list" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3344,35 +3332,35 @@ msgstr "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Disable multi table maintenance" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Edit SQL queries in popup window" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Edit in window" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Display errors" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Gather errors" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Show icons for warning, error and information messages" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Iconic errors" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3380,205 +3368,205 @@ msgstr "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Maximum execution time" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Save as file" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Character set of the file" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Compression" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Put columns names in the first row" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Columns enclosed by" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Columns escaped by" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Remove CRLF characters within columns" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Columns terminated by" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel edition" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Database name template" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Server name template" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Table name template" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Dump table" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Include table caption" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Table caption" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Label key" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME type" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Export method" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Save on server" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Remember file name template" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Enclose table and column names with backquotes" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "CREATE TABLE options:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Creation/Update/Check dates" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Disable foreign key checks" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal for BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Syntax to use when inserting data" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Export type" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Export time in UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Force secured connection while using phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Force SSL connection" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3586,148 +3574,148 @@ msgstr "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Foreign key dropdown order" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "A dropdown will be used if fewer items are present" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Foreign key limit" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Browse mode" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Customise browse mode" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Customise default options" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Developer" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Settings for phpMyAdmin developers" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Edit mode" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Customise edit mode" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Export defaults" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Customise default export options" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Features" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "General" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Set some commonly used options" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Import defaults" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Customise default common import options" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Import / export" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Set import and export directories and compression options" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Databases display options" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigation frame" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Customise appearance of the navigation frame" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servers" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Servers display options" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Tables display options" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Main frame" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Other core settings" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Settings that didn't fit enywhere else" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Page titles" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3737,22 +3725,22 @@ msgstr "" "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Query window" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Customise query window options" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Security" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3760,23 +3748,23 @@ msgstr "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Basic settings" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Authentication" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Authentication settings" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Server configuration" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3784,15 +3772,15 @@ msgstr "" "Advanced server configuration, do not change these options unless you know " "what they are for" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Enter server connection parameters" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Configuration storage" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3802,11 +3790,11 @@ msgstr "" "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Changes tracking" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3814,44 +3802,44 @@ msgstr "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Customise export options" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Customise import defaults" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Customise navigation frame" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Customise main frame" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL queries" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL Query box" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Customise links shown in SQL Query boxes" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL queries settings" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL Validator" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3863,43 +3851,43 @@ msgstr "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Startup" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Customise startup page" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Tabs" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Choose how you want tabs to work" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Text fields" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Customise text input fields" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Warnings" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Disable some of the warnings shown by phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3907,15 +3895,15 @@ msgstr "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Extra parameters for iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3923,11 +3911,11 @@ msgstr "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignore multiple statement errors" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3937,21 +3925,21 @@ msgstr "" "This might be good way to import large files, however it can break " "transactions." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Partial import: allow interrupt" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Do not abort on INSERT error" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3959,88 +3947,88 @@ msgstr "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Format of imported file" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Use LOCAL keyword" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Column names in first row" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Do not import empty rows" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Import currencies (£5.00 to 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Import percentages as proper decimals (12.00% to .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Number of queries to skip from start" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Partial import: skip queries" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Do not use AUTO_INCREMENT for zero values" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Initial state for sliders" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "How many rows can be inserted at one time" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Number of inserted rows" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Target for quick access icon" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Show logo in left frame" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Display logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Display server choice at the top of the left frame" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Display servers selection" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Minimum number of tables to display the table filter box" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "String that separates databases into different tree levels" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Database tree separator" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4048,39 +4036,39 @@ msgstr "" "Only light version; display databases in a tree (determined by the separator " "defined below)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Display databases in a tree" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Disable this if you want to see all databases at once" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Use light version" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Maximum table tree depth" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "String that separates tables into different tree levels" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Table tree separator" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL where logo in the navigation frame will point to" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logo link URL" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4088,45 +4076,45 @@ msgstr "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logo link target" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Highlight server under the mouse cursor" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Enable highlighting" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Maximum number of recently used tables; set 0 to disable" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Recently used tables" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Use less graphically intense tabs" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Light tabs" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Maximum number of characters shown in any non-numeric column on browse view" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Limit column characters" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4136,11 +4124,11 @@ msgstr "" "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Delete all cookies on logout" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4148,11 +4136,11 @@ msgstr "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Recall user name" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4164,52 +4152,52 @@ msgstr "" "and will be deleted as soon as you close the browser window. This is " "recommended for non-trusted environments." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Login cookie store" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Define how long (in seconds) a login cookie is valid" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Login cookie validity" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Double size of textarea for LONGTEXT columns" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Bigger textarea for LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Use icons on main page" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Maximum number of characters used when a SQL query is displayed" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Maximum displayed SQL length" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Users cannot set a higher value" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "Maximum number of databases displayed in left frame and database list" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Maximum databases" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4219,19 +4207,19 @@ msgstr "" "contains more rows, "Previous" and "Next" links will be " "shown." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Maximum number of rows to display" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Maximum tables" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4239,11 +4227,11 @@ msgstr "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt warning" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4251,43 +4239,43 @@ msgstr "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Memory limit" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "These are Edit, Copy and Delete links" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Where to show the table row links" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Use natural order for sorting table and database names" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Natural order" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Use only icons, only text or both" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Iconic navigation bar" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "use GZip output buffering for increased speed in HTTP transfers" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip output buffering" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4295,19 +4283,19 @@ msgstr "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Default sorting order" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Use persistent connections to MySQL databases" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Persistent connections" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4317,23 +4305,23 @@ msgstr "" "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Missing phpMyAdmin configuration storage tables" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Iconic table operations" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Disallow BLOB and BINARY columns from editing" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Protect binary columns" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4343,120 +4331,120 @@ msgstr "" "storage). If disabled, this utilises JS-routines to display query history " "(lost by window close)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanent query history" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "How many queries are kept in history" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Query history length" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Tab displayed when opening a new query window" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Default query window tab" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Query window height (in pixels)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Query window height" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Query window width (in pixels)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Query window width" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Select which functions will be used for character set conversion" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Recoding engine" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "When browsing tables, the sorting of each table is remembered" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Remember table's sorting" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Repeat headers" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Show help button instead of Documentation text" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Show help button" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "Save all edited cells at once" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Directory where exports can be saved on server" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Save directory" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Leave blank if not used" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Host authorisation order" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Leave blank for defaults" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Host authorisation rules" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Allow logins without a password" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Allow root login" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm name to display when doing HTTP Auth" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4466,19 +4454,19 @@ msgstr "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey config file" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Authentication method to use" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Authentication type" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4486,11 +4474,11 @@ msgstr "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Bookmark table" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4498,31 +4486,31 @@ msgstr "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Column information table" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Compress connection to MySQL server" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Compress connection" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Connection type" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Control user password" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4530,19 +4518,19 @@ msgstr "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Control user" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Count tables when showing database list" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Count tables" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4550,11 +4538,11 @@ msgstr "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Designer table" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4562,27 +4550,27 @@ msgstr "" "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]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Disable use of INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "What PHP extension to use; you should use mysqli if supported" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "PHP extension to use" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Hide databases matching regular expression (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Hide databases" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4590,23 +4578,23 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL query history table" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Hostname where MySQL server is running" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Server hostname" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Logout URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" @@ -4614,19 +4602,19 @@ msgstr "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Maximum number of records saved in \"table_uiprefs\" table" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Try to connect without password" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Connect without password" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4640,29 +4628,29 @@ msgstr "" "their names in order and use [kbd]*[/kbd] at the end to show the rest in " "alphabetical order." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Show only listed databases" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Leave empty if not using config auth" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Password for config auth" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF schema: pages table" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4672,19 +4660,19 @@ msgstr "" "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Database name" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Port on which MySQL server is listening, leave empty for default" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Server port" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4692,11 +4680,11 @@ msgstr "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Recently used table" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4704,19 +4692,19 @@ msgstr "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Relation table" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "SQL command to fetch available databases" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES command" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4724,41 +4712,41 @@ msgstr "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Signon session name" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Socket on which MySQL server is listening, leave empty for default" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Enable SSL for connection to MySQL server" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Use SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF schema: table coordinates" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4766,11 +4754,11 @@ msgstr "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Display columns table" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4778,11 +4766,11 @@ msgstr "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "UI preferences table" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4790,11 +4778,11 @@ msgstr "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Add DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4802,11 +4790,11 @@ msgstr "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Add DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4814,20 +4802,20 @@ msgstr "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Add DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Defines the list of statements the auto-creation uses for new versions." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Statements to track" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4835,11 +4823,11 @@ msgstr "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "SQL query tracking table" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4847,11 +4835,11 @@ msgstr "" "Whether the tracking mechanism creates versions for tables and views " "automatically." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Automatically create versions" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" @@ -4859,15 +4847,15 @@ msgstr "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "User preferences storage table" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "User for config auth" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4875,11 +4863,11 @@ msgstr "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Verbose check" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4887,20 +4875,20 @@ msgstr "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Verbose name of this server" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Whether a user should be displayed a "show all (rows)" button" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Allow to display all the rows" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4910,15 +4898,15 @@ msgstr "" "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Show password change form" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Show create database form" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" @@ -4926,11 +4914,11 @@ msgstr "" "Defines whether or not type display direction option is shown when browsing " "a table" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Show display direction" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4938,27 +4926,27 @@ msgstr "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Show field types" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Display the function fields in edit/insert mode" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Show function fields" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "Whether to show hint or not" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "Show hint" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4966,32 +4954,32 @@ msgstr "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Show phpinfo() link" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Show detailed MySQL server information" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Defines whether SQL queries generated by phpMyAdmin should be displayed" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Show SQL queries" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "Allow to display database and table statistics (eg. space usage)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Show statistics" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4999,11 +4987,11 @@ msgstr "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Display database comment instead of its name" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5015,29 +5003,29 @@ msgstr "" "['LeftFrameTableSeparator'] directive, so only the folder is called like the " "alias, the table name itself stays unchanged" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Display table comment instead of its name" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Display table comments in tooltips" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Mark used tables and make it possible to show databases with locked tables" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Skip locked tables" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Requires SQL Validator to be enabled" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5047,7 +5035,7 @@ msgstr "Requires SQL Validator to be enabled" msgid "Password" msgstr "Password" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5055,11 +5043,11 @@ msgstr "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Enable SQL Validator" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5067,12 +5055,12 @@ msgstr "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Username" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5080,19 +5068,19 @@ msgstr "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Suggest new database name" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "A warning is displayed on the main page if Suhosin is detected" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin warning" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5100,11 +5088,11 @@ msgstr "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Textarea columns" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5112,31 +5100,31 @@ msgstr "" "Textarea size (rows) in edit mode, this value will be emphasised for SQL " "query textareas (*2) and for query window (*1.25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Textarea rows" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Title of browser window when a database is selected" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Title of browser window when nothing is selected" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Default title" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Title of browser window when a server is selected" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Title of browser window when a table is selected" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5148,27 +5136,27 @@ msgstr "" "For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "List of trusted proxies for IP allow/deny" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Directory on server where you can upload files for import" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Upload directory" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Allow for searching inside the entire database" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Use database search" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5176,11 +5164,11 @@ msgstr "" "When disabled, users cannot set any of the options below, regardless of the " "check-box on the right" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Enable the Developer tab in settings" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5190,19 +5178,19 @@ msgstr "" "libraries/import.lib.php for defaults on how many queries a statement may " "contain." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Verbose multiple statements" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Check for latest version" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Enables check for latest version on main phpMyAdmin page" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5210,7 +5198,7 @@ msgstr "Enables check for latest version on main phpMyAdmin page" msgid "Version check" msgstr "Version check" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5218,7 +5206,7 @@ msgstr "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5238,47 +5226,47 @@ msgstr "HTTP authentication" msgid "Signon authentication" msgstr "Signon authentication" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Quick" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Custom" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Database export options" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV for MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document Text" @@ -5449,9 +5437,8 @@ msgstr "Create table" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Name" @@ -5791,7 +5778,7 @@ msgid "Hide" msgstr "Hide" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" @@ -6724,7 +6711,7 @@ msgstr "Invalid column count in CSV input on line %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Table name" @@ -7408,7 +7395,7 @@ msgstr "Parameters" msgid "Direction" msgstr "Direction" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Length/Values" @@ -7666,7 +7653,7 @@ msgstr "Table of contents" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Attributes" @@ -7961,7 +7948,7 @@ msgstr "Table seems to be empty!" msgid "Tracking of %s.%s is activated." msgstr "Tracking of %s.%s is activated." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7973,7 +7960,7 @@ msgstr "" "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -7981,13 +7968,13 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Index" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -7996,11 +7983,11 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Transformation options" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8012,34 +7999,34 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "ENUM or SET data too long?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Get more editing space" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "None" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "As defined:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primary" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Fulltext" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8048,25 +8035,25 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Add %s column(s)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "You have to add at least one column." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "PARTITION definition" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Add a value" @@ -12902,6 +12889,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Display direction for altering/creating columns" + #~ msgid "Create table on database %s" #~ msgstr "Create table on database %s" diff --git a/po/es.po b/po/es.po index abcf2152df..301120ed44 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-10-03 15:56+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" @@ -66,7 +66,7 @@ msgstr "Buscar" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Comentario de la base de datos: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Comentarios de la tabla" @@ -140,7 +140,7 @@ msgstr "Comentarios de la tabla" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Columna" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Tipo" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Nulo" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Predeterminado" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Enlaces a" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Comentarios" @@ -313,14 +313,14 @@ msgstr "Solamente datos" msgid "CREATE DATABASE before copying" msgstr "CREAR BASE DE DATOS antes de copiar" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Añada %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" @@ -335,8 +335,8 @@ msgstr "Seleccionar la base de datos copiada" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Editar o exportar esquema relacional" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -672,7 +672,7 @@ msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -734,7 +734,7 @@ msgstr "Diccionario de datos" msgid "Tracked tables" msgstr "Tablas con seguimiento" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -809,12 +809,12 @@ msgstr "Hacer seguimiento a la tabla" msgid "Database Log" msgstr "Registro de la base de datos" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Valores para la columna \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Insertar cada valor en un campo separado." @@ -1149,7 +1149,7 @@ msgstr "Recargando Privilegios" msgid "Removing Selected Users" msgstr "Eliminando los usuarios seleccionados" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Cerrar" @@ -1157,7 +1157,7 @@ msgstr "Cerrar" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Editar" @@ -1375,7 +1375,7 @@ msgstr "Por favor agregue al menos una variable a la serie" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1604,7 +1604,7 @@ msgstr "" "No se pudo crear la grilla de gráficos con la configuración importada. " "Reiniciando a configuración predeterminada..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1647,7 +1647,7 @@ msgstr "Variable/fórmula utilizada" msgid "Test" msgstr "Prueba" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1776,7 +1776,7 @@ msgstr "Tiempo de ejecución de la consulta" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2304,7 +2304,7 @@ msgstr "¡No se ha definido ningún índice!" msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2342,7 +2342,7 @@ msgstr "" "Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede eliminar " "uno." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2658,18 +2658,18 @@ msgid "shared" msgstr "compartido" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tablas" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2747,7 +2747,7 @@ msgstr "" "El nombre del host no es válido para el servidor %1$s. Por favor revise su " "configuración." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2819,7 +2819,7 @@ msgstr "MySQL ha dicho: " msgid "Failed to connect to SQL validator!" msgstr "No pudo conectarse a un validador de SQL!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Explicar SQL" @@ -2831,11 +2831,11 @@ msgstr "Omitir la explicación del SQL" msgid "Without PHP Code" msgstr "Sin código PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Actualizar" @@ -2844,7 +2844,7 @@ msgstr "Actualizar" msgid "Skip Validate SQL" msgstr "Saltar la validación de SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Validar SQL" @@ -2948,20 +2948,20 @@ msgid "Click to toggle" msgstr "Pulse para conmutar" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Estructura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3167,7 +3167,7 @@ msgid "Set value: %s" msgstr "Valor establecido: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Restaurar valor predeterminado" @@ -3336,66 +3336,54 @@ msgid "Default display direction" msgstr "Dirección por defecto de la visualización" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] o un número indicando las " -"columnas como máximo para las que se usará el modo vertical" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Dirección de visualización para creación/edición de columnas" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Ceja que se muestra cuando ingresa una base de datos" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Ceja predeterminada de la base de datos" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Ceja que se muestra cuando ingresa un servidor" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Ceja predeterminada para el servidor" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Ceja que se muestra cuando ingresa una tabla" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Ceja predeterminada de la tabla" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Mostrar el contenido binario en HEXadecimal por defecto" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Mostrar contenido binario como HEXadecimal" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Muestra las bases de datos en una lista en lugar de un desplegable" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Mostrar las bases de datos como una lista" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Muestra los servidores en una lista en lugar de un drop down" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Muestra los servidores en una lista" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3403,35 +3391,35 @@ msgstr "" "Desactivar las operaciones masivas de mantenimiento en tablas como " "optimización y reparación de las tablas seleccionadas de una base de datos." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Dsactivar mantenimiento de muchas tabla" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Editar las consultas SQL en una ventana emergente" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Editar en ventana" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Mostrar errores" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Agrupar los errores" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Mostrar iconos para los mensajes de información, error y advertencia" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Iconos en los errores" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3439,209 +3427,209 @@ msgstr "" "Definir el tiempo máximo permitido (en segundos) para la ejecución de un " "script ([kbd]0[/kbd] para ilimitado)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Tiempo máximo de ejecución" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Guardar como archivo" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Conjunto de caracteres del archivo" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Compresión" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Poner los nombres de campo en la primera fila" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Columnas encerradas por" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Caracter de escape de columnas" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Reemplazar NULL por" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Eliminar los caracteres CRLF en las columnas" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Columnas terminadas en" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Líneas terminadas en" # Used on libraries/export/csv.php to decide what level of compatibility needs # due to excel version -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Versión de Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Nombre de la plantilla de la base de datos" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Nombre de la plantilla del servidor" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Nombre de la plantilla de la tabla" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Volcar tabla" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Incluir el subtitulado de la tabla" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Subtitulado de la tabla" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Continuación del subtitulado de la tabla" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Clave de la etiqueta" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relaciones" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Método de exportación" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Guardar en el servidor" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Sobreescribir el(los) archivo(s) existente(s)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Recordar el nombre de la plantilla del archivo" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Encerrar nombres de tabla y columna con comillas invertidas" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Modo compatible con SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "Opciones CREATE TABLE:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Fechas de creación/actualización/revisión" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Utilizar inserciones con retraso" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Deshabilitar la revisión de las claves foráneas" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal para BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Usar la opción ignore inserts" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Sintaxis a utilizar para insertar datos" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Longitud máxima de la consulta creada" # Used as description for SQL syntax Export Type (options are INSERT, UPDATE # and REPLACE) -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Tipo de exportación" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Incluir lo exportado en una transacción" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Exportar hora en UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Forzar conexión segura mientras usa phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Forzar la conexión SSL" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3650,152 +3638,152 @@ msgstr "" "foráneas; [kbd]content[/kbd] son los datos referidos, [kbd]id[/kbd] es el " "valor clave" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Orden de despliegue de las claves foráneas" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Se usará un menú dropdown si hay menos ítems presentes" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Límite de las claves foráneas" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Modalidad de navegación" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Cambiar las opciones de la modalidad de visualización" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Personalizar las opciones predeteminadas" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Desarrolladores" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Configuración para desarrolladores de phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Modalidad de edición" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Cambiar las opciones de la modalidad de edición" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Exportar las opciones predeterminadas" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Personalizar las opciones comunes de exportación predeteminadas" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Características" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "General" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Definir algunas opciones usadas normalmente" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Importar las opciones predeterminadas" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Personalizar las opciones comunes de importación predeteminadas" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Importar / exportar" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" "Seleccione los directorios para importar y exportar así como las opciones de " "compresión" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Opciones para visualizar las bases de datos" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Página con los elementos de navegación" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" "Cambiar la apariencia predefinida de la página que contiene los elementos de " "navegación" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servidores" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Opciones para visualizar los servidores" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Opciones para visualizar las tablas" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Página principal" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Otros parámetros cruciales" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Parámetros que no encajaban en otra parte" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Títulos de página" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3805,22 +3793,22 @@ msgstr "" "[a@Documentation.html#cfg_TitleTable]documentación[/a] para ver las palabras " "mágicas que podrán ser usadas para obtener valores especiales." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Ventana de consulta" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Personalizar las opciones de la ventana de consulta" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Seguridad" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3828,23 +3816,23 @@ msgstr "" "Por favor tome en cuenta que phpMyAdmin es solamente una interfaz y sus " "opciones no limitan a MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Ajustes básicos" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Autentificación" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Configuración de autentificación" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Configuración del servidor" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3852,15 +3840,15 @@ msgstr "" "Configuración avanzada del servidor, no cambie estas opciones a menos que " "usted conozca como funcionan" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Escriba los ajustes básicos del servidor" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Almacenamiento de configuración" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3870,11 +3858,11 @@ msgstr "" "adicionales, mire [a@../Documentation.html#linked-tables]linked-tables " "infrastructure[/a] en la documentación" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Seguimiento de cambios" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3882,44 +3870,44 @@ msgstr "" "Seguimiento de cambios hechos en la base de datos. Requiere almacenamiento " "de configuración phpMyAdmin." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Personalizar las opciones para la exportación" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Personalizar los parámetros de importación predeterminados" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Personalizar el marco de navegación" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Personalizar el marco principal" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Consultas SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Ventana de consultas SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Cambiar los enlaces mostrados en las ventanas de consulta SQL" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Configuración de las consultas SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "Validador SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3932,43 +3920,43 @@ msgstr "" "Validator[/a], Copyright 2002 Upright Database Technology.Todos los derechos " "reservados.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Inicio" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Cambiar las opciones de la página de arranque" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Tabulaciones" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Seleccione como quiere que funcionen las tabulaciones" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Campos de texto" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Personalizar los campos de entrada de texto" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texto Texy!" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Advertencias" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Desactivar algunas de las advertencias mostradas por phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3976,15 +3964,15 @@ msgstr "" "Habilite la compresión [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] para " "las operaciones de importación y exportación" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Parámetros adicionales para iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3992,11 +3980,11 @@ msgstr "" "De estar activado, phpMyAdmin continúa computando consultas con múltiples " "sentencias incluso si falló una de las consultas" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignorar errores en sentencias múltiples" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4006,21 +3994,21 @@ msgstr "" "acercando al límite de tiempo. Esta puede ser una buena forma para importar " "archivos grandes, sin embargo, puede romper las transacciones." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Importación parcial: permitir interrupciones" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "No abortar si ocurre un error con INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Reemplazar los datos de la tabla con los del archivo" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4028,89 +4016,89 @@ msgstr "" "Formato predeterminado; tenga presente que esta lista depende de la " "localización (base de datos, tabla) y solamente SQL está disponible siempre" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Formato del archivo importado" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Use la palabra clave LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Nombres de columna en la primera fila" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "No importar filas vacías" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importar monedas (€5.00 como 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importar porcentajes como números decimales (12.00% como .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Número de consultas a saltarse desde el inicio" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Importación parcial: saltarse las consultas" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No utilizar AUTO_INCREMENT para los valores iguales a cero" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Estado inicial de los deslizadores" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Cuántas filas se pueden insertar de una vez" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Número de filas insertadas" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Destino para el icono de acceso rápido" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Mostrar el logo en la columna izquierda" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Mostrar el logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" "Mostrar la elección de servidor en la parte superior de la columna izquierda" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Mostrar la selección de servidores" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Número mínimo de tablas a mostrar en la ventana de filtro de tabla" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Cadena que separa bases de datos en diferentes niveles de árbol" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Separador de árbol de base de datos" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4118,39 +4106,39 @@ msgstr "" "Solamente la versión ligera; mostrar las bases de datos en un árbol " "(determinado por el separador definido abajo)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Mostrar las bases de datos en un árbol" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Deshabilite esto si quiere ver todas las bases de datos a la vez" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Use la versión clara" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Profundidad máxima del árbol de tablas" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Cadena que separa tablas en diferentes niveles de árbol" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Separador de árbol de tablas" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL a la que apuntará el logotipo del cuadro de navegación" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "URL para enlace del logo" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4158,46 +4146,46 @@ msgstr "" "Abrir la página enlazada en la ventana principal ([kbd]principal[/kbd]) o en " "una nueva ([kbd]nueva[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Objetivo para enlace del logo" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Resaltar servidor bajo el cursor" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Permitir destacar" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Número máximo de tablas recientemente utilizadas; 0 para desactivar" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Tablas recientemente utilizadas" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Use cejas con menor intensidad gráfica" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Cejas claras" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Cantidad máxima de caracteres a mostrar en un campo no-numérico en vista de " "navegación" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Límite de caracteres de la columna" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4209,11 +4197,11 @@ msgstr "" "que debe finalizar sesión de otros servidores cuando se conecta a múltiples " "servidores." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Eliminar todas las cookies al finalizar sesión" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4221,11 +4209,11 @@ msgstr "" "Define si el inicio de sesión anterior se debe recordar o no en la modalidad " "autenticación mediante cookie" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Recordar el nombre del usuario" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4237,56 +4225,56 @@ msgstr "" "para la sesión actual y se borrará tan pronto cierre la ventana del " "navegador. Esto es recomendable para entornos no confiables." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Almacenamiento de cookies de inicio de sesión" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" "Define por cuánto tiempo (en segundos) es válido un cookie de inicio de " "sesión" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Validez del cookie usado para el inicio de sesión" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Doble tamaño del textarea para las columnas LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "textarea más grande para LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Usar iconos en la página principal" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Número máximo de caracteres usados al mostrar una consulta SQL" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Máxima longitud al mostrar consulta SQL" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Los usuarios no pueden definir un valor más alto" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Número máximo de bases de datos visibles en la columna izquierda y en el " "listado de bases de datos" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Número máximo de bases de datos" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4296,19 +4284,19 @@ msgstr "" "juego de resultados contiene más filas, aparecerán enlaces "" "Anterior" y "Siguiente"." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Máximo número de filas a mostrar" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Número máximo de tablas mostradas en una lista de tablas" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Número máximo de tablas" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4316,11 +4304,11 @@ msgstr "" "Desactivar advertencia predeterminada que se muestra si no se encuentra " "mcrypt para la cookie de autenticación" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "advertencia mcrypt" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4328,44 +4316,44 @@ msgstr "" "El número de bytes que un script puede reservar. ej. [kbd]32M[/kbd] ([kbd]0[/" "kbd] para ilimitado)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Límite de la memoria" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "Estos son los enlaces para Editar, Copiar y Borrar" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Donde mostrar los enlaces de filas de tabla" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Utilizar orden natural para ordenar nombres de tablas y bases de datos" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Orden natural" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Use solamente íconos, solamente texto o ambos" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Barra de navegación mediante íconos" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Utilizar búfer en salida de GZip para mayor velocidad en transferencias HTTP" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Buffer de salida de GZip" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4373,19 +4361,19 @@ msgstr "" "[kbd]SMART[/kbd] - es decir: orden descendente para columnas de tipo TIME, " "DATE, DATETIME y TIMESTAMP, ascendente en los demás casos" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Orden de despliegue predeterminado" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Use conexiones persistentes para las bases de datos MySQL" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Conexiones persistentes" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4395,23 +4383,23 @@ msgstr "" "de los detalles de la base de datos si alguna de las tablas requeridas por " "phpMyAdmin no pudo ser encontrada en el almacenamiento de configuración" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Faltan las tablas de almacenaje de configuración de phpMyAdmin" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Operaciones de las tablas mediante íconos" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "No permitir la edición de columnas BLOB y BINARIAS" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Proteger los campos binarios" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4422,125 +4410,125 @@ msgstr "" "rutinas JavaScript para mostrar el histórico de consultas (olvidado al " "cerrar la ventana)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Histórico permanente de consultas" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Cuántas consultas se guardan en el histórico" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Longitud del histórico de consultas" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "La ceja se muestra cuando abre una nueva ventana de consulta" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Ceja predetermnada para la ventana de consulta" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Altura (en pixels) de la ventana de consultas" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Altura de ventana de consulta" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Anchura de ventana de consulta (en píxeles)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Anchura de ventana de consulta" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Seleccione cuáles funciones se usarán para la conversión del conjunto de " "caracteres" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Motor de recodificación" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "Al explorar tablas, se recordará el ordenamiento de cada tabla" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Recordar ordenamiento de la tabla" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Repetir cabecera cada X celdas, [kbd]0[/kbd] desactiva esta funcionalidad" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Repetir cabeceras" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Mostrar botón de ayuda en lugar de texto de documentación" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Mostrar el botón de ayuda" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "Guardar todas las celdas editadas simultáneamente" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" "Directorio donde los archivos exportados se pueden guardar en el servidor" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Directorio de almacenamiento" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Deje en blanco si no necesita usarlo" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Orden en que se autentica el Host" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Deje en blanco para usar los valores predeterminados" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Reglas de autorización del Host" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Permitir inicio de sesión sin contraseña" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Permitir el inicio de sesión como root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "Nombre a mostrar como dominio (HTTP Basic Auth Realm) durante la " "autenticación HTTP" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "Dominio HTTP (Realm)" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4550,19 +4538,19 @@ msgstr "" "dispositivo SweKey[/a] (no localizado en su raíz de documentos; valor " "sugerido: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "Archivo de configuración SweKey" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Método de autenticación a usar" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4570,11 +4558,11 @@ msgstr "" "Deje en blanco para no dar soporte [a@http://wiki.cihar.com/pma/bookmark]" "bookmark[/a], de manera predeterminada: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Agregar tabla a favoritos" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4582,33 +4570,33 @@ msgstr "" "Dejar en blanco para evitar comentarios/tipos MIME en celdas, sugerido: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Tabla con información de la columna" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Conexión de compresión con el servidor SQL" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Conexión de compresión" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Cómo conectar con el servidor, mantenga el valor [kbd]tcp[/kbd] en caso de " "no estar seguro" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Tipo de conexión" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Controlar la contraseña del usuario" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4616,19 +4604,19 @@ msgstr "" "Un usuario MySQL especial configurado con permisos limitados, más " "información disponible en [a@http://wiki.cihar.com/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Controlar al usuario" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Contar las tablas cuando muestra el listado de las bases de datos" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Contar las tablas" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4636,11 +4624,11 @@ msgstr "" "Dejar en blanco para evitar el soporte de diseñador, sugerido: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Tabla del diseñador" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4648,30 +4636,30 @@ msgstr "" "Más información en [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] y [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Deshabilitar el uso de INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Cuál extensión PHP debe usar; usted debe usar mysqli si su sistema lo permite" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "extensión PHP para usar" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" "Ocultar las bases de datos que cumplen con los criterios de las expresiones " "regulares (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Ocultar las bases de datos" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4679,23 +4667,23 @@ msgstr "" "Dejar en blanco para evitar soporte de histórico de consultas SQL, sugerido: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Tabla de histórico de consultas SQL" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Descripción del servidor" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Nombre del servidor" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "URL de fin de sesión" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" @@ -4704,19 +4692,19 @@ msgstr "" "registros más recientes en «table_uiprefs» y los registros anteriores sean " "eliminados" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Número máximo de regustros almacenados en la tabla «table_uiprefs»" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Intente conectar sin contraseña" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Conecte sin contraseña" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4730,30 +4718,30 @@ msgstr "" "bases de datos, sólo ingrese sus nombres en orden y utilice [kbd]*[/kbd] al " "final para mostrar las restantes en orden alfabético." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Muestre solamente las bases de datos listadas" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Deje vacío si no está usando config auth" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Contraseña para config auth" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Dejar en blanco para evitar soporte para esquema en PDF, sugerido: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "Esquema de PDF: tabla de páginas" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4764,21 +4752,21 @@ msgstr "" "completa. Deje en blanco para que no exita soporte. Predeterminado: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Nombre de la base de datos" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "El puerto al cual ha sido asociado el servidor MySQL, deje vacío para usar " "el predeterminado" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Puerto del servidor" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4786,11 +4774,11 @@ msgstr "" "Deje en blanco para eliminar la \"persistencia\" de las tablas recientemente " "utilizadas entre sesiones, valor sugerido: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Tabla recientemente utilizada" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4798,19 +4786,19 @@ msgstr "" "Deje en blanco para no dar soporte [a@http://wiki.cihar.com/pma/relation]" "relation-links[/a], de manera predeterminada: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Tabla de relaciones" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "Comando SQL para llamar las bases de datos disponibles" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "Comando SHOW DATABASES" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4818,44 +4806,44 @@ msgstr "" "Ver [a@http://wiki.cihar.com/pma/auth_types#signon]tipos de autenticación[/" "a] para conocer un ejemplo" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Nombre de la sesión al signon" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "URL de signon" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "El puerto escuchado por el servidor MySQL, deje vacío para usar los valores " "predeterminados" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Puerto del servidor" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Habilitar SSL para conexión con el servidor SQL" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Usar SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Dejar en blanco para evitar soporte de esquema en PDF, sugerido: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "Esquema en PDF: tabla de coordenadas" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4863,11 +4851,11 @@ msgstr "" "Tabla para describir la presentación de las celdas, deje en blanco para " "quitar soporte, sugerido: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Mostrar tabla de columnas" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4876,11 +4864,11 @@ msgstr "" "interfaz de tablas entre sesiones, valor sugerido : [kbd]pma_table_uiprefs[/" "kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Preferencias de interfaz de tablas" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4888,11 +4876,11 @@ msgstr "" "Si se incluye la sentencia DROP DATABASE IF EXISTS como primera línea del " "registro al crear una base de datos o no." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Agregar DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4900,11 +4888,11 @@ msgstr "" "Si se incluye la sentencia DROP TABLE IF EXISTS como primera línea del " "registro al crear una tabla." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Agregar DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4912,21 +4900,21 @@ msgstr "" "Si se incluye la sentencia DROP VIEW IF EXISTS como primera línea del " "registro al crear una vista." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Agregar DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Definir la lista de sentencias que la creación automática usa para nuevas " "versiones." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Sentencias a hacer seguimiento" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4934,11 +4922,11 @@ msgstr "" "Deje en blanco para eliminar soporte de seguimiento de consultas SQL, valor " "sugerido: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Tabla de seguimiento de consultas SQL" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4946,11 +4934,11 @@ msgstr "" "Si el mecanismo de seguimiento crea versiones para tablas y vistas " "automáticamente o no." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Crear versiones automáticamente" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" @@ -4958,15 +4946,15 @@ msgstr "" "Deje en blanco para eliminar soporte de almacenamiento de preferencias en " "base de datos, valor sugerido : [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Tabla de almacenamiento de preferencias de usuario" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Usuario para config auth" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4974,31 +4962,31 @@ msgstr "" "Deshabilite si conoce que sus tablas pma_* se encuentran actualizadas. Esto " "previene chequeos de compatibilidad e incrementa por tanto el rendimiento" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Revisión detallada" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "Nombre del servidor donde el servidor SQL se está ejecutando." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Nombre del servidor, forma extendida" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Si el usuario puede ver un botón "mostrar todos (los registros)" o " "no" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Permitir que se muestren todas las filas" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5008,15 +4996,15 @@ msgstr "" "debido a que la contraseña está incluída en el archivo de configuración; " "esto no limita la capacidad de ejecutar la misma orden directamente" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Mostrar el formulario para cambio de contraseña" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Mostrar el formulario para crear una base de datos" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" @@ -5024,11 +5012,11 @@ msgstr "" "Define si se muestra la opción sobre el tipo de dirección de la " "visualización al examinar una tabla" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Mostrar dirección de visualización" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -5036,27 +5024,27 @@ msgstr "" "Si inicialmente se muestran los campos de tipo en el modo de edición/" "inserción o no" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Mostrar tipo de campos" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Mostrar campos de función en el modo de edición/inserción" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Mostrar los campos de función" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "Si mostrar ayudas o no" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "Mostrar ayudas" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5064,33 +5052,33 @@ msgstr "" "Mostrar enlace a salida de [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Mostrar el enlace phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Mostrar información detallada acerca del servidor SQL" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Define si los enunciados SQL generados por phpMyAdmin se deben mostrar" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Mostrar las consultas SQL" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Permitir mostrar estadísiticas de base de datos y tablas (por ejemplo uso de " "espacio)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Mostrar estadísticas" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5098,11 +5086,11 @@ msgstr "" "Si los consejos están habilitados y hay un comentario de base de datos " "definido, esto intercambiará el comentario y nombre real" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Mostrar el comentario de la tabla en lugar de su nombre" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5114,30 +5102,30 @@ msgstr "" "['LeftFrameTableSeparator'], de forma que sólo la carpeta sea llamada como " "el alias, el nombre de la tabla en sí mismo permanece intacto" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Mostrar el comentario de la tabla en lugar de su nombre" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Mostrar los comentarios de las tablas en los tooltips" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Marcar tablas usadas y hacer posible el mostrar bases de datos con tablas " "bloqueadas" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Saltarse las tablas bloqueadas" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Requiere que el Validador SQL esté habilitado" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5147,7 +5135,7 @@ msgstr "Requiere que el Validador SQL esté habilitado" msgid "Password" msgstr "Contraseña" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5155,11 +5143,11 @@ msgstr "" "[strong]Advertencia:[/strong] necesita extensión PHP SOAP o PEAR SOAP " "instalada" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Habilitar Validador SQL" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5167,12 +5155,12 @@ msgstr "" "Si se posee un nombre de usuario propio, especifícalo aquí (valor por " "defecto: [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Nombre de usuario" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5180,19 +5168,19 @@ msgstr "" "Sugerir nombre de base de datos en el formulario de "Crear base de " "datos" (si es posible) o dejar vacío el campo de texto" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Sugerir un nuevo nombre para la base de datos" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Mostrar advertencia en la página principal si se detecta Suhosin" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Advertencia Suhosin" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5201,12 +5189,12 @@ msgstr "" "será aumentado en áreas de texto para consultas SQL (x2) y en la venta de " "consultas (x1,25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Columnas para las áreas de texto" # See translation string 813 -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5215,31 +5203,31 @@ msgstr "" "aumentado en áreas de texto para consultas SQL (x2) y en la venta de " "consultas (x1,25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Filas para áreas de texto" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Título de la ventana al seleccionar una base de datos" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Título de la ventana cuando no hay nada seleccionado" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Título predeterminado" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Título de la ventana cuando se ha seleccionado un servidor" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Título de la ventana cuando se ha seleccionado un tabla" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5251,27 +5239,27 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente del proxy 1.2.3.4:[br]" "[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Listado de proxies de confianza para autorización/bloqueo de IP" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Directorio en el servidor donde puede subir archivos para importar" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Directorio desde donde se cargarán los archivos" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Permite hacer una búsqueda dentro de toda la base de datos" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Use búsquedas en la base de datos" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5280,11 +5268,11 @@ msgstr "" "opciones situadas más abajo, sin importar la casilla de la derecha" # see translation string 529 -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Habilitar la pestaña Desarrolladores en la configuración" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5294,21 +5282,21 @@ msgstr "" "sentencias. Ver libraries/import.lib.php para saber el valor predeterminado " "de la cantidad de sentencias que puede tener una consulta." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Opción detallada para múltiples sentencias" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Buscar si existe una versión más reciente" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Habilita la verificación de la última versión en la página principal de " "phpMyAdmin" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5316,7 +5304,7 @@ msgstr "" msgid "Version check" msgstr "Revise la versión" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5324,7 +5312,7 @@ msgstr "" "Habilite la compresión [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP" "[/a] para las operaciones de importación y exportación" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5346,47 +5334,47 @@ msgstr "Autenticación por HTTP" msgid "Signon authentication" msgstr "Autenticación por sesión" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Hoja de cálculo Open Document" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Rápido" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Personalizado" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opciones de exportación de la base de datos" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV para datos de MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Texto Open Document" @@ -5568,9 +5556,8 @@ msgstr "Crear tabla" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nombre" @@ -5917,7 +5904,7 @@ msgid "Hide" msgstr "Ocultar" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformación del navegador" @@ -6875,7 +6862,7 @@ msgstr "El número de columnas de los datos CSV en la línea %d no es válido." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Nombre de la tabla" @@ -7567,7 +7554,7 @@ msgstr "Parámetros" msgid "Direction" msgstr "Dirección" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Longitud/Valores" @@ -7826,7 +7813,7 @@ msgstr "Tabla de contenidos" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributos" @@ -8124,7 +8111,7 @@ msgstr "La tabla, ¡parece estar vacía!" msgid "Tracking of %s.%s is activated." msgstr "Seguimiento de %s.%s activado." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8136,7 +8123,7 @@ msgstr "" "invertida (\"\\\") o una comilla simple (\"'\") entre esos valores, añada " "una barra invertida (por ejemplo '\\\\xyz' o 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8144,13 +8131,13 @@ msgstr "" "Para valores predeterminados, introduzca sólamente un valor sin caracteres " "de escape ni comillas, usando este formato: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Índice" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8160,11 +8147,11 @@ msgstr "" "transformaciones MIME-type transformations, dé clic en %stransformation " "descriptions%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opciones de transformación" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8176,36 +8163,36 @@ msgstr "" "invertida (\"\\\") o comilla sencilla (\"'\") entre esos valores, añada una " "barra invertida (por ejemplo '\\\\xyz' o 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "¿Datos ENUM o SET demasiado largos?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Obtener más espacio de edición" # Corresponds to NONE option for default value of a TIMESTAMP field -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Ninguno" # Corresponds to user-defined option for default value of a TIMESTAMP field -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Personalizado:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primaria" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Texto completo" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8214,25 +8201,25 @@ msgstr "" "No hay una descripción disponible para esta transformación.
Por favor " "pregunte al autor lo que %s hace." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Agregar %s columna(s)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Debe agregar al menos una columna." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Motor de almacenamiento" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "definición de la PARTICIÓN" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Agregar un valor" @@ -13311,6 +13298,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "«concurrent_insert» está definido como 0" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] o un número indicando las " +#~ "columnas como máximo para las que se usará el modo vertical" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Dirección de visualización para creación/edición de columnas" + #~ msgid "Create table on database %s" #~ msgstr "Crear nueva tabla en la base de datos %s" diff --git a/po/et.po b/po/et.po index 502a1bdeb0..a348a265a1 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" @@ -65,7 +65,7 @@ msgstr "Otsi" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -127,7 +127,7 @@ msgid "Database comment: " msgstr "Andmebaasi kommentaar: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Tabeli kommentaarid" @@ -137,7 +137,7 @@ msgstr "Tabeli kommentaarid" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -155,7 +155,7 @@ msgstr "Väljade nimed" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -167,7 +167,7 @@ msgstr "Tüüp" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -178,7 +178,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Vaikimisi" @@ -192,13 +192,13 @@ msgid "Links to" msgstr "Lingib " #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Kommentaarid" @@ -315,14 +315,14 @@ msgstr "Ainult andmed" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE enne kopeerimist" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Lisa %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" @@ -337,8 +337,8 @@ msgstr "Mine kopeeritud andmebaasile" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -364,7 +364,7 @@ msgid "Edit or export relational schema" msgstr "Seoseskeem" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -689,7 +689,7 @@ msgid "Check tables having overhead" msgstr "Kontrolli ülekulusid" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -757,7 +757,7 @@ msgstr "Andmesõnastik" msgid "Tracked tables" msgstr "Kontrolli tabelit" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -839,12 +839,12 @@ msgstr "Kontrolli tabelit" msgid "Database Log" msgstr "Andmebaas" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1196,7 +1196,7 @@ msgstr "Lae privileegid uuesti" msgid "Removing Selected Users" msgstr "Eemalda valitud kasutajad" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1204,7 +1204,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Muuda" @@ -1447,7 +1447,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1671,7 +1671,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1720,7 +1720,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1878,7 +1878,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2452,7 +2452,7 @@ msgstr "Indeksit pole defineeritud!" msgid "Indexes" msgstr "Indeksid" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2489,7 +2489,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2802,18 +2802,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabelid" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2894,7 +2894,7 @@ msgstr "Vigane serveri indeks: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Vigane hostname serverile %1$s. Palun kontrolli seadeid." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2966,7 +2966,7 @@ msgstr "MySQL ütles: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Seleta SQL-i" @@ -2978,11 +2978,11 @@ msgstr "Jäta SQL-i seletamine vahele" msgid "Without PHP Code" msgstr "ilma PHP koodita" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Loo PHP kood" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Uuenda" @@ -2991,7 +2991,7 @@ msgstr "Uuenda" msgid "Skip Validate SQL" msgstr "Jäta SQL-i kontroll vahele" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Kontrolli SQL-i" @@ -3107,20 +3107,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktuur" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3332,7 +3332,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3482,139 +3482,129 @@ msgid "Default display direction" msgstr "Andmebaasi eksportimise seaded" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Nimeta andmebaas ümber" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Nimeta andmebaas ümber" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Nimeta andmebaas ümber" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Tabeli hooldus" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Muuda järgmist rida" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Kuva võimalused" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Salvesta failina" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Faili tähetabel:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formaat" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Pakkimine" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3623,71 +3613,71 @@ msgstr "Pakkimine" msgid "Put columns names in the first row" msgstr "Pange väljade nimed esimesse ritta" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Väljad ümbritsetud" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Väljad varjatud" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Asenda NULL " -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Read lõpetatud" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Read lõpetatud" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Exceli versioon" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Faili nime template" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Faili nime template" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Faili nime template" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3695,406 +3685,406 @@ msgstr "Faili nime template" msgid "Dump table" msgstr "%s tabel(it)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Lisa tabeli seletus" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Tabeli seletus" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Jätkuva tabeli seletus" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Nimetuse võti" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-tüüp" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Suhted" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Ekspordi tüüp" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Kirjuta olemasolev(ad) fail(id) üle" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Faili nime template" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Kasutage tagurpidi kaldkriipse tabelites või tabelinimedes" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL ühilduvus viis" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Loo/muuda/kontrolli kuupäevi" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Kasuta ajastatud lisamisi" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Keela võõrvõtmete (foreign key) kontroll" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Kasutaja ignoreeritavaid lisamisi" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Loodud päringu maksimaalne pikkus" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Ekspordi tüüp" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Lisa eksport ülekandesse" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Ekspordi tüüp" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "Export defaults" msgstr "Importige failid" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 #, fuzzy msgid "Customize default export options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Genereeri" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Importige failid" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Serverid" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 #, fuzzy msgid "Servers display options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 #, fuzzy msgid "Tables display options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Ava dokumendi tekst" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Lehenumber:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 #, fuzzy msgid "Customize query window options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentatsioon" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy msgid "Authentication settings" msgstr "Tiražeerimine" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 #, fuzzy msgid "Customize import defaults" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL-päring" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL-päring" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL-päring" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-ajalugu" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4102,72 +4092,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Staatus" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Tabel" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Kasutage tekstivälja" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -4178,222 +4168,222 @@ msgstr "" "See võib olla hea viis suurte failide importimisel, kuigi võib katkestada " "ülekanded." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Asenda tabeli andmed failiga" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Imporditud faili formaat" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "kasuta LOCAL võtmesõna" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Pange väljade nimed esimesse ritta" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Käske (päringuid) mida algusest vahele jätta" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Lisa AUTO_INCREMENT väärtus" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 #, fuzzy msgid "Number of inserted rows" msgstr "Sorteritud ridade arv." -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "Mitu tabelit on hetkel avatud." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 #, fuzzy msgid "Database tree separator" msgstr "Faili nime template" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 #, fuzzy msgid "Use light version" msgstr "MySQL kliendi versioon" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Recently used tables" msgstr "Kontrolli tabelit" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4401,457 +4391,457 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Maximum databases" msgstr "Pole andmebaase" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Ressursilimiidid" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Muuda tabeli sorteeringut" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Nimeta tabel ümber" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Paranda lõimud" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "Andmete kodukataloog" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Ühendused" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Pole tabeleid" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Defrgamenteeri tabel" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 #, fuzzy msgid "PHP extension to use" msgstr "PHP versioon" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Pole andmebaase" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "serveri nimi" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4860,347 +4850,347 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "andmebaasi nimi" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "Serveri ID" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analüüsi tabelit" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Paranda tabelit" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Serveri valik" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Näitan veeru kommentaare" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defrgamenteeri tabel" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Parameerid" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automaatne taastamine" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Näita avatud tabeleid" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Näita võrgustiku" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Näita täispikkasid päringuid" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Rea statistika" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5208,29 +5198,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 #, fuzzy msgid "Skip locked tables" msgstr "Näita avatud tabeleid" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5240,90 +5230,90 @@ msgstr "" msgid "Password" msgstr "Parool" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Kasutajanimi:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Lisa/Kustuta välja veerud" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy msgid "Default title" msgstr "Nimeta andmebaas ümber" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5331,57 +5321,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 #, fuzzy msgid "Upload directory" msgstr "Andmete kodukataloog" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5389,13 +5379,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5415,47 +5405,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV kasutades LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Ava dokumendi arvutustabel" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV MS Exceli jaoks" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Ava dokumendi tekst" @@ -5631,9 +5621,8 @@ msgstr "Loo tabel" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nimi" @@ -6034,7 +6023,7 @@ msgid "Hide" msgstr "Peida" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browseri transformatsioon" @@ -6944,7 +6933,7 @@ msgstr "Vigane väljade arv CSV sisendis real %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Tabeli nimi" @@ -7648,7 +7637,7 @@ msgstr "" msgid "Direction" msgstr "Otselingid" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Pikkus/Väärtused*" @@ -7944,7 +7933,7 @@ msgstr "Sisukord" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Parameetrid" @@ -8257,7 +8246,7 @@ msgstr "Tabel tundub olevat tühi!" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8275,7 +8264,7 @@ msgstr "" "\") või ülakoma (\"'\") sinna paigutusse, varjestage see tagurpidi " "kaldkriipsuga (näiteks '\\\\xyz' või 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8284,13 +8273,13 @@ msgstr "" "kaldkriipsudega varjestamata ning jutumärkideta, kasutades järgmist " "kirjakuju: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8299,11 +8288,11 @@ msgstr "" "Transformatsiooni võimaluste ja tema MIME-tüübi transformatsiooni " "nimekirjaks vajutage %stransformatsiooni kirjeldusele%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Transformeerimise seaded" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8315,36 +8304,36 @@ msgstr "" "\") või ülakoma (\"'\") nende väärtuste seas, varjestage see tagurpidi " "kaldkriipsuga (näiteks '\\\\xyz' või 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Pole" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primaarne" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Täistekst" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8353,28 +8342,28 @@ msgstr "" "Selle transformatsiooni jaoks ei ole kirjeldust.
Palun küsige autorilt, " "mida %s teeb." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Lisa %s väli(jad)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Peate lisama vähemalt ühe välja." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Varundusmootor" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Lisa uus kasutaja" diff --git a/po/eu.po b/po/eu.po index 78deb6943a..d5ec9590fb 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" @@ -66,7 +66,7 @@ msgstr "Bilatu" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -128,7 +128,7 @@ msgid "Database comment: " msgstr "Datu-basearen iruzkina: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Taularen iruzkinak" @@ -138,7 +138,7 @@ msgstr "Taularen iruzkinak" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Zutabe izenak" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Mota" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Nulua" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Lehenetsia" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Estekak honi:" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Iruzkinak" @@ -318,14 +318,14 @@ msgstr "Datuak soilik" msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "%s gehitu" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" @@ -341,8 +341,8 @@ msgstr "Kopiatutako taulara aldatu" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -368,7 +368,7 @@ msgid "Edit or export relational schema" msgstr "Erlazio-eskema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -694,7 +694,7 @@ msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -760,7 +760,7 @@ msgstr "Datu-hiztegia" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -840,12 +840,12 @@ msgstr "Taula egiaztatu" msgid "Database Log" msgstr "Datu-basea" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1183,7 +1183,7 @@ msgstr "Pribilegioak berkargatzen" msgid "Removing Selected Users" msgstr "Hautatutako erabiltzaileak baztertu" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1191,7 +1191,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Editatu" @@ -1424,7 +1424,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1648,7 +1648,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1698,7 +1698,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1852,7 +1852,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2425,7 +2425,7 @@ msgstr "Ez dago indizerik definituta!" msgid "Indexes" msgstr "Indizeak" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2462,7 +2462,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2764,18 +2764,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Taulak" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2851,7 +2851,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2923,7 +2923,7 @@ msgstr "MySQL-ek zera dio: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL-a azaldu" @@ -2935,11 +2935,11 @@ msgstr "SQL-ren azalpena saltatu" msgid "Without PHP Code" msgstr "PHP Koderik gabe" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP kodea sortu" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "" @@ -2948,7 +2948,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "SQL-ren balidapena saltatu" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL balidatu" @@ -3060,20 +3060,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Egitura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3286,7 +3286,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3436,136 +3436,126 @@ msgid "Default display direction" msgstr "Datu-basea esportatzeko aukerak" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Taularen mantenua" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Editatu hurrengo lerroa" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Eginbideak erakutsi" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Bidali" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formatoa" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Trinkotzea" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3574,71 +3564,71 @@ msgstr "Trinkotzea" msgid "Put columns names in the first row" msgstr "Eremuen izenak lehenengo errenkadan jarri" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Eremuak honekin mugatuta:" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Eremuak escaped by:" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "NULL ordezkatu honen ordez:" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Honetan bukatutako lerroak: " -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Honetan bukatutako lerroak: " -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel edizioa" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3646,399 +3636,399 @@ msgstr "Txantiloi-fitxategiaren izena" msgid "Dump table" msgstr "%s taula(k)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Taularen epigrafea gehitu" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Taularen epigrafea" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 #, fuzzy msgid "Continued table caption" msgstr "Taularen epigrafea gehitu" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-mota" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Erlazioak" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Esportazio mota" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Gainean idatzi aurretik badiren fitxategiak" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "\"Backquotes\" erabili taula eta eremuen izenekin " -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Sortu/Eguneratu/Egiaztatu datak" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 #, fuzzy msgid "Use ignore inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Esportazio mota" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Esportazio mota" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV datuak" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "General" msgstr "Egilea:" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Fitxategiak inportatu" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "Zerbitzaria" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentazioa" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Orri zenbakia:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentazioa" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL kontsulta" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL kontsulta" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL kontsulta" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-historia" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4046,288 +4036,288 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Egoera" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Taula" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Testu-eremua erabili" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Taularen datuak fitxategiarekin ordezkatu " -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Eremuen izenak lehenengo errenkadan jarri" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Taula aztertu" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4335,451 +4325,451 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Baliabideen mugak" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Taularen \"Order By\" aldatu" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Taula berrizendatu izen honetara: " -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Konexioak" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Taularik ez" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Datu-baserik ez" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4788,343 +4778,343 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Datu-basea" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Taula aztertu" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Taula konpondu" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Zutabearen iruzkinak erakusten" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Sententziak" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "Automatically create versions" msgstr "Zerbitzariaren bertsioa" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "Taulak erakutsi" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Sareta erakutsi" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Kontsulta osoak erakutsi" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Errenkadaren estatistikak" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5132,28 +5122,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5163,91 +5153,91 @@ msgstr "" msgid "Password" msgstr "Pasahitza" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Erabiltzaile-izena:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Lehenetsia" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5255,56 +5245,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5312,13 +5302,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5338,47 +5328,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS Excel datuentzako CSV" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5550,9 +5540,8 @@ msgstr "Orri berri bat sortu" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Izena" @@ -5931,7 +5920,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Nabigatzailearen eraldaketa" @@ -6814,7 +6803,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7518,7 +7507,7 @@ msgstr "" msgid "Direction" msgstr "Sortzea" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Luzera/Balioak*" @@ -7804,7 +7793,7 @@ msgstr "Edukinen taula" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributuak" @@ -8118,7 +8107,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8137,7 +8126,7 @@ msgstr "" "bazenu, beti erabili alderantzikaturiko barra (adibidez '\\\\xyz' or 'a" "\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8145,13 +8134,13 @@ msgstr "" "Lehenetsitako balioak erabiltzeko, mesedez sartu balio bakar bat, komatxo " "edota alderantzikaturiko barrarik gabe, formato hau erabiliz: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indizea" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8160,11 +8149,11 @@ msgstr "" "Eraldaketen hobespen eta haien MIME-mota eraldaketen zerrendarako, egizu " "klik hemen %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Eraldaketen hobespenak" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8176,36 +8165,36 @@ msgstr "" "edo barra arrunta (\"'\") erabili beharko bazenu, beti erabili " "alderantzikaturiko barra (adibidez '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Batez" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Honela definitua:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Lehen mailakoa" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Testu osoa" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8214,28 +8203,28 @@ msgstr "" "Eraldaketa honentzako deskribapenik ez dago erabilgarri.
Mesedez " "egileari galdetu, %s-(e)k zer egiten duen." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Gehitu %s zutabe" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Erabiltzaile berria gehitu" diff --git a/po/fa.po b/po/fa.po index 6b81b8723c..17e3c0427c 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" @@ -63,7 +63,7 @@ msgstr "جستجو" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -127,7 +127,7 @@ msgid "Database comment: " msgstr "توضيحات پایگاه داده:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "توضيحات جدول" @@ -137,7 +137,7 @@ msgstr "توضيحات جدول" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -153,7 +153,7 @@ msgstr "ستون" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -165,7 +165,7 @@ msgstr "نوع" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -176,7 +176,7 @@ msgstr "خالي" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "پيش‌فرض" @@ -190,13 +190,13 @@ msgid "Links to" msgstr "پيوند به" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "توضيحات" @@ -310,14 +310,14 @@ msgstr "فقط داده‌ها" msgid "CREATE DATABASE before copying" msgstr "پیش از کپی پایگاه داده ایجاد شود" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "افزودن %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "مقدار افزایشی خودکار اضافه شود" @@ -332,8 +332,8 @@ msgstr "تعویض به پایگاه داده ی کپی شده" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "ویرایش یا صدور نمای رابطه ای" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -671,7 +671,7 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -737,7 +737,7 @@ msgstr "فرهنگ داده‌ها" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -816,12 +816,12 @@ msgstr "بررسي جدول" msgid "Database Log" msgstr "پايگاه داده" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1152,7 +1152,7 @@ msgstr "ويرايش امتيازات" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1160,7 +1160,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "ويرايش" @@ -1393,7 +1393,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1614,7 +1614,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1664,7 +1664,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1814,7 +1814,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2386,7 +2386,7 @@ msgstr "هيچ فهرستي تعريف‌نشده‌است!" msgid "Indexes" msgstr "فهرست‌ها" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2423,7 +2423,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2720,18 +2720,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "جدولها" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2805,7 +2805,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2877,7 +2877,7 @@ msgstr "پيغام MySQL :" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "شرح دادن SQL" @@ -2890,11 +2890,11 @@ msgstr "شرح دادن SQL" msgid "Without PHP Code" msgstr "بدون كد PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "ساخت كد PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "" @@ -2904,7 +2904,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "معتبرسازي SQL" @@ -3020,20 +3020,20 @@ msgid "Click to toggle" msgstr "برای انتخاب کلیک کنبد" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "ساختار" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3243,7 +3243,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3392,136 +3392,126 @@ msgid "Default display direction" msgstr "آمار پايگاههاي داده" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "نگهداشت جدول" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "نمايش خصوصيات" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "ذخيره به صورت پرونده" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "مجموعه كاراكترهاي پرونده:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "قالب" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "فشرده‌سازي" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3530,66 +3520,66 @@ msgstr "فشرده‌سازي" msgid "Put columns names in the first row" msgstr "قراردادن نام ستونها در اولين سطر" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "ستونهاي درميان‌گرفته با" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "ستونهاي جداشده با" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "خطوط منتهي به" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "خطوط منتهي به" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3597,396 +3587,396 @@ msgstr "" msgid "Dump table" msgstr "%s جدول(ها)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 #, fuzzy msgid "Relations" msgstr "عمليات" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "صدور" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "قراردادن نام جدولها و ستونها بين علامت نقل‌قول (\" ' \")" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 #, fuzzy msgid "Use delayed inserts" msgstr "وروديهاي تمديدشده" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "وروديهاي تمديدشده" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "صدور" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "داده‌هاي CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "General" msgstr "توليد‌شده توسط" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "آمار پايگاههاي داده" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "سرور" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "مستندات" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "شماره صفحه:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "مستندات" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "پرس و جوي SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "پرس و جوي SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "پرس و جوي SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy msgid "SQL Validator" msgstr "معتبرسازي SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3994,284 +3984,284 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "جدول" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "افزودن ستون جديد" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "جايگزيني داده‌هاي جدول با پرونده" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "قراردادن نام ستونها در اولين سطر" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "تحليل جدول" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4279,442 +4269,442 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "تغيير جدول مرتب شده با" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "بازناميدن جدول به" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "No tables" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "No databases" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4723,340 +4713,340 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "پايگاه داده" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "تحليل جدول" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "مرمت جدول" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "نمايش توضيحات ستون" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "شرج" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "Automatically create versions" msgstr "نسخه سرور" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "آمار پايگاههاي داده" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "نمايش جدولها" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Show grid" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "آمار سطرها" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5064,28 +5054,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5095,91 +5085,91 @@ msgstr "" msgid "Password" msgstr "اسم رمز" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "نام كاربر:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "اضافه يا حذف ستونها" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "پيش‌فرض" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5187,56 +5177,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5244,13 +5234,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5270,48 +5260,48 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy msgid "Database export options" msgstr "آمار پايگاههاي داده" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV براي داده‌هاي MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5484,9 +5474,8 @@ msgstr "ساخت يك صفحه جديد" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "اسم" @@ -5852,7 +5841,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "" @@ -6726,7 +6715,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7420,7 +7409,7 @@ msgstr "" msgid "Direction" msgstr "ایجاد" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "طول/مقادير*" @@ -7694,7 +7683,7 @@ msgstr "توضيحات جدول" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "ويژگيها" @@ -7991,7 +7980,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8010,30 +7999,30 @@ msgstr "" "، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" "\\'b')" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "فهرست" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -8047,63 +8036,63 @@ msgstr "" "، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" "\\'b')" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "خير" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "اصلي" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "كاملا متن" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "افزودن ستون جديد" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "افزودن يك كاربر جديد" diff --git a/po/fi.po b/po/fi.po index e02cf801f5..9c23937a43 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" @@ -66,7 +66,7 @@ msgstr "Etsi" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Tietokannan kommentti: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Taulun kommentit" @@ -140,7 +140,7 @@ msgstr "Taulun kommentit" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Sarake" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Tyyppi" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Tyhjä" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Oletusarvo" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Linkitys sarakkeeseen:" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Kommentit" @@ -313,14 +313,14 @@ msgstr "Vain tiedot" msgid "CREATE DATABASE before copying" msgstr "Suorita CREATE DATABASE ennen kopiointia" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Lisää %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" @@ -335,8 +335,8 @@ msgstr "Siirry kopioituun tietokantaan" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Relaatioskeeman muokkaus tai vienti" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -672,7 +672,7 @@ msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -740,7 +740,7 @@ msgstr "Tietosanasto" msgid "Tracked tables" msgstr "Seurattavat taulut" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -815,12 +815,12 @@ msgstr "Seuraa taulua" msgid "Database Log" msgstr "Tietokantaloki" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Sarakkeen \"%s\" arvot" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Syötä arvot omiin kenttiinsä." @@ -1167,7 +1167,7 @@ msgstr "Käyttöoikeusten uudelleenlataus" msgid "Removing Selected Users" msgstr "Poista valitut käyttäjät" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Sulje" @@ -1175,7 +1175,7 @@ msgstr "Sulje" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Muokkaa" @@ -1419,7 +1419,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1648,7 +1648,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1699,7 +1699,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1842,7 +1842,7 @@ msgstr "Suorituksen enimmäiskesto" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2371,7 +2371,7 @@ msgstr "Indeksiä ei ole määritelty!" msgid "Indexes" msgstr "Indeksit" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2409,7 +2409,7 @@ msgstr "" "Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee " "poistaa." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2730,18 +2730,18 @@ msgid "shared" msgstr "jaettu" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Taulut" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2815,7 +2815,7 @@ msgstr "Virheellinen palvelimen indeksi: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2887,7 +2887,7 @@ msgstr "MySQL ilmoittaa: " msgid "Failed to connect to SQL validator!" msgstr "SQL-validaattoriin ei voitu yhdistää" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Selitä SQL-kysely" @@ -2899,11 +2899,11 @@ msgstr "Älä selitä SQL-kyselyä" msgid "Without PHP Code" msgstr "Kätke PHP-koodi" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Näytä PHP-koodi" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Päivitä" @@ -2912,7 +2912,7 @@ msgstr "Päivitä" msgid "Skip Validate SQL" msgstr "Älä tarkista SQL-kyselyä" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Tarkista SQL-lause" @@ -3028,20 +3028,20 @@ msgid "Click to toggle" msgstr "Valitse painamalla" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Rakenne" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3240,7 +3240,7 @@ msgid "Set value: %s" msgstr "Aseta arvo: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Palauta oletusarvo" @@ -3411,108 +3411,98 @@ msgid "Default display direction" msgstr "Tietokantojen näyttöasetukset" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Tietokantaa syötettäessä näytettävä välilehti" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Oletusarvoinen tietokantavälilehti" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Palvelinta syötettäessä näytettävä välilehti" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Oletusarvoinen palvelinvälilehti" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Taulua syötettäessä näytettävä välilehti" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Oletusarvoinen tauluvälilehti" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Näytä binäärisisältö oletusarvoisesti heksamuodossa" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Näytä binaarisisältö heksamuodossa" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Näyttää tietokannat luettelona eikä pudotusvalikkona" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Näytä tietokannat luettelona" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Näytä palvelimet luettelona eikä pudotusvalikkona" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Näytä palvelimet luettelona" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Taulun ylläpito" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Muokkaa SQL-kyselyitä uudessa ikkunassa" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Muokkaa seuraavaa riviä" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Ulkoasun asetukset" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Älä välitä virheistä" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Älä välitä virheistä" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3520,32 +3510,32 @@ msgstr "" "Aseta enimmäissekuntimäärä, jonka skripti saa ajaa ([kbd]0[/kbd] = ei " "aikarajaa)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Suorituksen enimmäiskesto" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Tallenna tiedostoon" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Tiedoston merkistö" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Muoto" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Pakkaus" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3554,68 +3544,68 @@ msgstr "Pakkaus" msgid "Put columns names in the first row" msgstr "Laita sarakkeiden nimet ensimmäiselle riville" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Sarakkeiden rajausmerkki" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Koodinvaihtomerkki" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Korvaa NULL-merkki tällä:" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Poista CRLF-merkit sarakkeista" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Rivien erotinmerkki" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Rivien erotinmerkki" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-muokkaus" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Tietokantanimen pohja" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Palvelinnimen pohja" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Taulunimen pohja" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3623,120 +3613,120 @@ msgstr "Taulunimen pohja" msgid "Dump table" msgstr "%s taulu(a)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Sisällytä taulun otsikko" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Taulun otsikko" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Jatkettu taulun otsikko" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Tunniste" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-tyyppi" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relaatiot" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Vientityyppi" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Tallenna palvelimelle" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Korvaa jo olemassa oleva(t) tiedosto(t)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Muista tiedostonimen pohja" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Laita taulujen ja sarakkeiden nimet lainausmerkkeihin" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL-yhteensopiva tila" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Luonti-, päivitys- ja tarkistuspäiväykset" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Käytä viivästettyjä lisäyslauseita" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Älä tarkista viiteavaimia" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Käytä BLOB-arvoissa heksalukuja" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Käytä IGNORE:a INSERT-komennoissa" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Tietoa lisättäessä käytettävä syntaksi" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Luodun kyselyn enimmäispituus" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Vie taulut" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Lisää transaktio" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy #| msgid "Export contents" msgid "Export time in UTC" msgstr "Vie sisällöt" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Pakota käyttämään phpMyAdminissa suojattua yhteyttä" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Pakota käyttämään SSL-yhteyttä" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3744,180 +3734,180 @@ msgstr "" "Lajittelujärjestys viiteavaimen pudotusvalikon kohteille; [kbd]content[/kbd] " "on viitatut tiedot, [kbd]id[/kbd] on avainarvo" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Viiteavaimen pudotusvalikon järjestys" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Pudotusvalikkoa käytetään, jos kohteita on enemmän" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Viiteavaimen rajoitus" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Selaustila" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Mukauta selaustilaa" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Mukauta viennin oletusasetuksia" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Kehittäjä" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Asetukset phpMyAdmin-kehittäjille" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Muokkaustila" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Mukauta muokkaustilaa" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Vie oletusarvot" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Mukauta viennin oletusasetuksia" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Ominaisuudet" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Keksi" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Tuo oletusarvot" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Mukauta yleistuonnin oletusasetuksia" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Tuonti ja vienti" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Aseta tuonti- ja vientihakemistot sekä pakkauksen asetukset" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Tietokantojen näyttöasetukset" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigointikehys" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Mukauta navigointikehyksen näkymää" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Palvelimet" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Palvelinten näyttöasetukset" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Taulujen näyttöasetukset" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Pääkehys" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Muut ydinasetukset" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Asetukset, jotka eivät sovi muualle" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Sivunumero:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Kyselyikkuna" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Mukauta kyselyikkunan asetuksia" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Turvallisuus" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3925,27 +3915,27 @@ msgstr "" "Huomaa, että phpMyAdmin on vain käyttöliittymä, ja sen ominaisuuksia ei ole " "rajoitettu MySQL-tietokantaan" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Perusasetukset" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Todennustyyppi" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Todennustyyppi" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Palvelimen määrittely" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3953,17 +3943,17 @@ msgstr "" "Palvelimen lisämäärittely; älä muuta näitä valintoja, ellet tiedä, mihin " "niitä käytetään." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Anna palvelimen yhteysparametrit" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Asetustiedosto" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3978,58 +3968,58 @@ msgstr "" "ohjeista [a@../Documentation.html#linked-tables]linkitettyjen taulujen " "infrastruktuuri[/a]." -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Mukauta viennin oletusasetuksia" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Mukauta tuonnin oletusasetuksia" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Mukauta navigointikehystä" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Mukauta pääkehystä" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL-kyselyt" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL-kyselykenttä" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Mukauta SQL-kyselykentässä näytettäviä linkkejä" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL-kyselyt" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-historia" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4037,47 +4027,47 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Käynnistys" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Mukauta käynnistyssivua" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Välilehdet" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Valitse haluamasi välilehtien toiminta" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Käytä tekstikenttää" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Mukauta viennin oletusasetuksia" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy!-teksti" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Varoitukset" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Kytke osa phpMyAdminin näyttämistä varoituksista pois päältä" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4085,15 +4075,15 @@ msgstr "" "Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/Gzip]gzip" "[/a]-pakkausta" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Iconv-laajennuksen lisäparametrit" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4101,11 +4091,11 @@ msgstr "" "Jos käytössä, phpMyAdmin jatkaa monilausekyselyjen laskemista, vaikka yksi " "kyselyistä epäonnistui" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Älä välitä peräkkäisistä lausevirheistä" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4115,21 +4105,21 @@ msgstr "" "Tätä kannattaa käyttää tuotaessa suuria tiedostoja; se saattaa kuitenkin " "katkaista transaktiot." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Osittainen tuonti: salli keskeytys" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Korvaa taulun nykyiset rivit tiedostolla" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4137,98 +4127,98 @@ msgstr "" "Oletusmuoto; huomaa, että tämä luettelo riippu sijainnista (tietokanta, " "taulu), ja käytettävissä on vain SQL" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Tuotavan tiedoston muoto" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Käytä LOCAL-avainsanaa" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Sarakenimet ensimmäisessä rivissä" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Älä tuo tyhjiä riviä" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Tuo valuutta-arvot ($5.00 muotoon 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Tuo prosenttiyksiköt sopivin desimaaliluvuin (12.00% muotoon .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Alusta ohitettavien tietueiden (kyselyjen) määrä" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Osittainen tuonti: ohita kyselyjä" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Kuinka monta riviä voi lisätä kerrallaan" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Lisättyjen rivien määrä" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Pikakäyttökuvakkeen kohde" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Näytä vasemmassa kehyksessä logo" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Näytä logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Näytä palvelimen alinta vasemman kehyksen yläkulmassa" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Näytä palvelinten valinta" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of tables to display the table filter box" msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Merkkijono, joka jakaa tietokannat eri puutasoille" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Tietokantapuun erotin" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4236,39 +4226,39 @@ msgstr "" "Vain kevyt versio; näytä tietokannat puuna (puu määritellään alla " "osoitetulla erottimella)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Näytä tietokannat puuna" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Poista tämä käytöstä, jos haluat nähdä kaikki tietokannat kerralla" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Käytä kevyttä versiota" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Taulupuun enimmäissyvyys" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Merkkijono, joka jakaa taulut eri puutasoille" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Taulupuun erotin" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logon linkin osoite" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4276,50 +4266,50 @@ msgstr "" "Avaa linkitetty sivu pääikkunassa: ([kbd]main[/kbd]) tai uudessa ikkunassa: " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logon linkin kohde" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Korosta kohdistimen alla oleva palvelin" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Käytä korostusta" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Seuraamattomat taulut" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Käytä pelkistettyjä välilehtiä" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Kevyet välilehdet" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "Näytettävän SQL-kyselyn enimmäispituus" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4330,22 +4320,22 @@ msgstr "" "asetetaan FALSE:ksi, saattaa helposti unohtaa kirjata muut palvelimet ulos, " "mikäli yhteyksiä on muodostettu useisiin palvelimiin." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Poista kaikki evästeet uloskirjauduttaessa" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" "Määritä, onko evästetodennustilassa muistettava edellinen kirjautuminen" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Anna käyttäjänimi" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4357,54 +4347,54 @@ msgstr "" "ajan ja poistetaan, kun selainikkuna suljetaan. Tätä suositellaan " "epäluotetuille ympäristöille." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Kirjautumisevästeen tallennus" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Määrittele sekunteina, kuinka pitkään kirjautumiseväste on kelvollinen" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Kirjautumisevästeen kelpoisuus" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Näytettävän SQL-kyselyn enimmäispituus" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Näytettävän SQL-kyselyn enimmäispituus" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Vasemmassa kehyksessä ja tietokantaluettelossa näkyvien tietokantojen " "enimmäismäärä" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Tietokantoja enintään" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4414,29 +4404,29 @@ msgstr "" "enemmän rivejä, näytetään "Edellinen"- ja "Seuraava"-" "linkit." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Näytettävien rivien enimmäismäärä" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Tauluja enintään" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4444,45 +4434,45 @@ msgstr "" "Skriptin varaama enimmäistavumäärä, esim. [kbd]32M[/kbd] ([kbd]0[/kbd] = ei " "rajoitusta)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Muistirajoitus" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Lajittele taulu" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Käytä vain kuvakkeita, vain tekstiä tai molempia" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Navigointipalkki, jossa kuvakkeet" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "käytä Gzip-ulostulon puskurointia nopeuttaaksesi HTTP-siirtoja" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip-ulostulon puskurointi" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -4494,46 +4484,46 @@ msgstr "" "[kbd]SMART[/kbd] - eli laskeva järjestys kentille, joiden tyyppi on TIME, " "DATE, DATETIME tai TIMESTAMP; muulloin nouseva järjestys" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Oletuslajittelujärjestys" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Käytä MySQL-tietokantojen jatkuvia yhteyksiä" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Jatkuvat yhteydet" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Kuvakkeellisen taulun toiminnot" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Estä BLOB- ja BINARY-kenttien muokkaus" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Suojaa binäärikentät" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -4547,127 +4537,127 @@ msgstr "" "tarvitaan). Jos poistettu käytöstä, tämä käyttää JavaScript-rutiineja " "kyselyhistorian näyttämisessä (katoaa, kun ikkuna suljetaan)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Pysyvä kyselyhistoria" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Kuinka monta kyselyä historiassa pidetään" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Kyselyhistorian pituus" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Uutta kyselyikkunaa avattaessa näytettävä välilehti" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Oletusarvoinen kyselyikkunavälilehti" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Kyselyikkunan korkeus (pikseleissä)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Kyselyikkunan korkeus" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Kyselyikkunan leveys (pikseleissä)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Kyselyikkunan leveys" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Valitse, mitä funktioita käytetään merkistömuunnoksessa" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Merkistön uudelleenkoodaus" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Nimeä taulu uudelleen" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Korjaa säikeet" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Hakemisto, jonne viennit voi tallentaa palvelimella" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Tallennushakemisto" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Jätä tyhjäksi, jos tätä ei käytetä" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Palvelintodennuksen järjestys" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Käytä oletusarvoja jättämällä tyhjäksi" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Palvelintodennuksen säännöt" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Salli kirjautumiset ilman salasanaa" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Salli pääkäyttäjän kirjautuminen" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4676,19 +4666,19 @@ msgstr "" "[a@http://swekey.com]SweKey-laitteistotodennuksen[/a] asetustiedoston polku " "(ei dokumenttijuuressa; suositeltu: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey-asetustiedosto" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Käytettävä todennustyyppi" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Todennustyyppi" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4696,11 +4686,11 @@ msgstr "" "Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/bookmark]" "kirjanmerkki[/a]tukea; oletusarvo: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Kirjanmerkkitaulu" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4708,31 +4698,31 @@ msgstr "" "Jätä tyhjäksi, jos et halua sarakkeiden kommentteja ja mime-tyyppejä; " "oletusarvo: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Saraketietojen taulu" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Pakkaa MySQL-palvelimen yhteys" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Pakkaa yhteys" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Kuinka palvelimeen yhdistetään; käytä tcp:tä, jos olet epävarma" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Yhteystyyppi" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Hallintakäyttäjän salasana" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4741,19 +4731,19 @@ msgstr "" "lisätietoja saatavilla [a@http://wiki.phpmyadmin.net/pma/controluser]wikissä" "[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Hallintakäyttäjä" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Laske taulujen määrä, kun tietokantaluettelo näytetään" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Laske taulujen määrä" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4761,11 +4751,11 @@ msgstr "" "Jätä tyhjäksi, jos et halua Suunnittelija-taulua; oletusarvo: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Suunnittelija-taulu" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4774,28 +4764,28 @@ msgstr "" "virheenjäljittimestä[/a] ja [a@http://bugs.mysql.com/19588]MySQL:n " "ohjelmavirheistä[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Poista INFORMATION_SCHEMA käytöstä" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Käytettävä PHP-laajennus; mysqli-laajennusta tulisi käyttää, jos sitä tuetaan" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Käytettävä PHP-laajennus" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Piilota tietokannat, jotka vastaavat säännöllistä lauseketta (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Piilota tietokannat" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4803,43 +4793,43 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL-kyselyhistorian taulu" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "MySQL-palvelimen verkkonimi" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Palvelimen verkkonimi" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Uloskirjautumisen verkko-osoite" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Yritä yhdistää ilman salasanaa" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Yhdistä ilman salasanaa" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -4855,30 +4845,30 @@ msgstr "" "koodinvaihtomerkin, mikäli haluat käyttää niiden todellista ilmentymää; " "käytä esimerkiksi 'oma\\_db' eikä 'oma_db'." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Näytä vain luetteloidut tietokannat" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Jätä tyhjäksi, jot et käytä config-todennusta" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Config-todennuksen salasana" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF-kaavio: sivujen taulu" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4888,22 +4878,22 @@ msgstr "" "Katso täydet tiedot aiheesta [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/" "a]. Jätä tyhjäksi, jos et halua tukea. Oletusarvo: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "tietokannan nimi" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Portti, jota MySQL-palvelin kuuntelee; käytä oletusarvoa jättämällä tyhjäksi" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Palvelinportti" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4915,13 +4905,13 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Anna käyttäjänimi" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4929,19 +4919,19 @@ msgstr "" "Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/relation]" "relaatiolinkki[/a]tukea; oletusarvo: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Relaatiotaulu" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "Mahdollisten tietokantojen noutoon käytettävä SQL-käsky" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES -käsky" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4949,44 +4939,44 @@ msgstr "" "Katso [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]todennustyyppien[/" "a] esimerkit" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Signon-istunnon nimi" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Signon-kirjautumisen verkko-osoite" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Palvelinpistoke, jota MySQL-palvelin kuuntelee; käytä oletusarvoa jättämällä " "tyhjäksi" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Palvelinpistoke" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Yhdistä MySQL-palvelimeen käyttäen SSL-yhteyttä" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Käytä SSL-yhteyttä" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea; oletusarvo: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF-kaavio: taulun koordinaatit" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4998,13 +4988,13 @@ msgstr "" "Taulu, joka kuvaa näyttökentät; jätä tyhjäksi, jos et halua tukea; " "oletusarvo: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Näyttökenttien taulu" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5016,53 +5006,53 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Eheytä taulu" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Tieto" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5074,25 +5064,25 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL-kyselyhistorian taulu" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automaattinen palautuminen" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5104,15 +5094,15 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Config-todennuksen käyttäjä" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -5120,11 +5110,11 @@ msgstr "" "Poista käytöstä, mikäli tiedät pma_*-taulujesi olevan ajan tasalla. Tämä " "estää yhteensopivuustarkistukset ja lisää siten suorituskykyä." -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Yksityiskohtainen tarkistus" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -5132,22 +5122,22 @@ msgstr "" "Käyttäjäystävällinen kuvaus tästä palvelimesta. Jätä tyhjäksi, jos haluat, " "että tässä lukee sen sijaan palvelimen verkkonimi." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Tämän palvelimen yksityiskohtainen nimi" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Pitääkö käyttäjälle näyttää \"Näytä kaikki (tietueet)\" -painike" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Salli kaikkien rivien näyttäminen" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5157,57 +5147,57 @@ msgstr "" "todennusta käytettäessä, koska salasana lukee suoraan asetustiedostossa; " "tämä ei estä saman komennon suorittamista suoraan." -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Näytä salasananvaihtolomake" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Näytä tietokannanluontilomake" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Databases display options" msgid "Show display direction" msgstr "Tietokantojen näyttöasetukset" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Näytä avoimet taulut" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Näytä funktiokentät muokkaus- ja liäsystilassa" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Näytä funktiokentät" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Näytä ruudukko" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5215,31 +5205,31 @@ msgstr "" "Näyät linkki [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]-" "käskyn tulosteeseen" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Näytä phpinfo()-linkki" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Näytä MySQL-palvelimen tarkat tiedot" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Määrittele, pitääkö phpMyAdminin luomat SQL-kyselyt näyttää" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Näytä SQL-kyselyt" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "Salli tietokannan ja taulun tilastojen (eli tilankäytön) näyttäminen" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Näytä tilastot" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5247,11 +5237,11 @@ msgstr "" "Jos työkaluvihjeet ovat päällä ja tietokannan kommentti on asetettu, tämä " "näyttää kommentin ja oikean nimen" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Näytä tietokannan kommentti, ei nimi" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5263,30 +5253,30 @@ msgstr "" "['LeftFrameTableSeparator']-asetuksen mukaisesti, jolloin vain kansiota " "kutsutaan aliaksena, itse taulun nimi pysyy muuttumattomana" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Näytä taulun kommentti, ei nimi" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Näytä taulun kommentit työkaluvihjeissä" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Merkitse käytetyt taulut ja mahdollista lukittuja tauluja sisältävien " "tietokantojen näyttäminen" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Ohita lukitut taulut" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5296,28 +5286,28 @@ msgstr "" msgid "Password" msgstr "Salasana" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Käyttäjänimi" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5325,65 +5315,65 @@ msgstr "" "Ehdota tietokannan nimeä "Luo tietokanta" -lomakkeessa " "(mahdollisuuksien mukaan) tai pidä tekstikenttä tyhjänä" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Ehdota uuden tietokannan nimeä" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR-tekstikentän sarakkeet" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR-tekstikentän rivit" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Oletusarvoinen tauluvälilehti" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5395,39 +5385,39 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) -otsakkeeseen, joka tulee " "välipalvelimelta 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" "Luotettujen välipalvelimien luettelo IP-osoitteden sallimista ja estämistä " "varten" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Palvelimen hakemisto, jonne tuotavia tiedostoja voi lähettää" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Lähetyshakemisto" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Antaa hakea koko tietokannasta" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Käytä tietokantahakua" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5436,19 +5426,19 @@ msgstr "" "Näytä monilausekyselyjen kaikki vaikuttuneet rivit. Katso libraries/import." "lib.php-tiedoston oletusarvoista, kuinka monta kyselyä lauseessa voi olla." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Yksityiskohtaiset peräkkäiset lauseet" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Tarkista uusin versio" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5456,7 +5446,7 @@ msgstr "" msgid "Version check" msgstr "Version tarkistus" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5464,7 +5454,7 @@ msgstr "" "Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a]-pakkausta" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5492,49 +5482,49 @@ msgstr "Palvelintodennuksen järjestys" msgid "Signon authentication" msgstr "Palvelintodennuksen järjestys" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV käyttäen LOAD DATA -kyselyä" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Muu väri" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Tietokannan tulostusvalinnat" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS Excelin CSV-muoto" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document Text" @@ -5715,9 +5705,8 @@ msgstr "Luo taulu" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nimi" @@ -6126,7 +6115,7 @@ msgid "Hide" msgstr "Kätke" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Selaimen muunnos (transformation)" @@ -7069,7 +7058,7 @@ msgstr "Virheellinen kenttien määrä CSV-syötteessä rivillä %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Taulun nimi" @@ -7798,7 +7787,7 @@ msgstr "" msgid "Direction" msgstr "Suorat linkit" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Pituus/Arvot*" @@ -8109,7 +8098,7 @@ msgstr "Sisällysluettelo" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Attribuutit" @@ -8411,7 +8400,7 @@ msgstr "Taulu on tyhjä!" msgid "Tracking of %s.%s is activated." msgstr "Kohteen %s.%s seuranta on käytössä." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8429,7 +8418,7 @@ msgstr "" "\") tai heittomerkkiä (\"'\"), laita merkin eteen kenoviiva (esim. '\\\\xyz' " "tai 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8437,13 +8426,13 @@ msgstr "" "Syötä oletusarvoihin vain yksi arvo (käyttämättä kenoviivamerkkejä tai " "lainausmerkkejä) tässä muodossa: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeksi" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8452,11 +8441,11 @@ msgstr "" "Tietoja saatavilla olevista muunnosvaihtoehdoista ja niiden MIME-tyyppien " "muunnoksista saa painamalla %smuunnoksen kuvaukset%s -kohtaa" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Muunnosvaihtoehdot" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8467,36 +8456,36 @@ msgstr "" ">Jos tarvitset arvoissa kenoviivaa (\"\\\") tai yksittäistä lainausmerkkiä " "(\"'\"), lisää merkin eteen kenoviiva (esim. '\\\\xyz' tai 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Ei mitään" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Määritelty:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Perusavain" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Koko teksti" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8505,28 +8494,28 @@ msgstr "" "Tälle muunnokselle ei ole saatavilla kuvausta.
Kysy tekijältä, mitä %s " "tekee." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Lisää sarake/sarakkeita" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Vähintään yksi kenttä on lisättävä." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Tallennusmoottori" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "PARTITION-määritelmä" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new server" msgid "+ Add a value" diff --git a/po/fr.po b/po/fr.po index 6968113df6..4d1b57b02c 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-10-05 18:57+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" @@ -67,7 +67,7 @@ msgstr "Rechercher" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -131,7 +131,7 @@ msgid "Database comment: " msgstr "Commentaire sur la base de données: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Commentaires sur la table" @@ -141,7 +141,7 @@ msgstr "Commentaires sur la table" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -157,7 +157,7 @@ msgstr "Colonne" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -169,7 +169,7 @@ msgstr "Type" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -180,7 +180,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Défaut" @@ -194,13 +194,13 @@ msgid "Links to" msgstr "Relié à" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Commentaires" @@ -314,14 +314,14 @@ msgstr "Données seulement" msgid "CREATE DATABASE before copying" msgstr "Faire CREATE DATABASE avant la copie" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Ajouter %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" @@ -336,8 +336,8 @@ msgstr "Aller à la base de données copiée" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -358,7 +358,7 @@ msgid "Edit or export relational schema" msgstr "Éditer ou exporter un schéma relationnel" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -668,7 +668,7 @@ msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -730,7 +730,7 @@ msgstr "Dictionnaire de données" msgid "Tracked tables" msgstr "Tables faisant l'objet d'un suivi" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -805,12 +805,12 @@ msgstr "Suivre la table" msgid "Database Log" msgstr "Journal de la base de données" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Valeurs pour la colonne «%s»" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Saisir chaque valeur dans un champ séparé." @@ -1145,7 +1145,7 @@ msgstr "Chargement des privilèges en cours" msgid "Removing Selected Users" msgstr "Effacement des utilisateurs sélectionnés" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Fermer" @@ -1153,7 +1153,7 @@ msgstr "Fermer" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Modifier" @@ -1369,7 +1369,7 @@ msgstr "Veuillez ajouter au moins une variable à la série" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1596,7 +1596,7 @@ msgstr "" "Échec de construction du graphique avec la configuration importée. " "Réinitialisation à la configuration par défaut..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1639,7 +1639,7 @@ msgstr "Variable / formule utilisée" msgid "Test" msgstr "Test" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1766,7 +1766,7 @@ msgstr "Durée d'exécution de la requête" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2296,7 +2296,7 @@ msgstr "Aucun index n'est défini !" msgid "Indexes" msgstr "Index" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2334,7 +2334,7 @@ msgstr "" "Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être " "supprimé." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2646,18 +2646,18 @@ msgid "shared" msgstr "partagé" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tables" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2736,7 +2736,7 @@ msgstr "" "Nom d'hôte invalide pour le serveur %1$s. Veuillez vérifier votre " "configuration." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2809,7 +2809,7 @@ msgstr "MySQL a répondu: " msgid "Failed to connect to SQL validator!" msgstr "Connexion au validateur SQL impossible" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Expliquer SQL" @@ -2821,11 +2821,11 @@ msgstr "Ne pas expliquer SQL" msgid "Without PHP Code" msgstr "Sans source PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Créer source PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Actualiser" @@ -2834,7 +2834,7 @@ msgstr "Actualiser" msgid "Skip Validate SQL" msgstr "Ne pas valider SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Valider SQL" @@ -2938,20 +2938,20 @@ msgid "Click to toggle" msgstr "Cliquer pour basculer" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Structure" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3152,7 +3152,7 @@ msgid "Set value: %s" msgstr "Assigner la valeur: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Ramener la valeur par défaut" @@ -3316,66 +3316,54 @@ msgid "Default display direction" msgstr "Valeur par défaut de la direction de l'affichage" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] ou un nombre qui indique la " -"valeur maximum pour lequel le mode vertical sera utilisé" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Direction de l'affichage pour modifier/créer des colonnes" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "L'onglet affiché lors de l'entrée dans une base de données" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Onglet par défaut pour bases de données" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "L'onglet initial dans l'affichage serveur" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Onglet par défaut pour serveur" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "L'onglet initial lors de l'accès à une table" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Onglet par défaut pour tables" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Montrer par défaut le contenu binaire en hexadécimal" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Montrer le contenu binaire en hexadécimal" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Montrer la liste des bases de données au lieu d'un menu déroulant" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Affiche les bases de données sous forme de liste" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Montrer la liste des serveurs au lieu d'un menu déroulant" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Affiche les serveurs sous forme de liste" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3383,36 +3371,36 @@ msgstr "" "Désactiver les opérations de masse sur les tables, comme l'optimisation ou " "la réparation." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Désactiver la maintenance de tables multiples" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Éditer les requêtes SQL dans une fenêtre popup" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Édition dans la fenêtre" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Affichage des erreurs" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Collecter les erreurs" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" "Utiliser des icônes pour les avertissements, les erreurs et les informations." -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Icônes pour les erreurs" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3420,205 +3408,205 @@ msgstr "" "Nombre de secondes allouées à l'exécution des scripts ([kbd]0[/kbd] signifie " "illimité)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Durée maximum d'exécution" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Transmettre" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Jeu de caractères du fichier" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Compression" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Afficher les noms de colonnes en première ligne" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Colonnes entourées par" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Caractère d'échappement" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Remplacer NULL par" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Enlève les caractères de fin de ligne à l'intérieur des colonnes" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Colonnes terminées par" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Lignes terminées par" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel en version" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Modèle de nom de base de données" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Modèle de nom de serveur" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Modèle de nom de table" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Exporter la table" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Inclure les sous-titres" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Sous-titre de la table" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Inclure les sous-titres" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Clé de l'étiquette" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Type MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Méthode d'exportation" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Sauvegarder sur le serveur" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Écraser les fichiers existants" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Se souvenir du modèle de nom de fichier" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Entourer les noms de tables et colonnes de guillemets obliques" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Mode de compatibilité SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "Options pour CREATE TABLE :" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Dates de création/mise à jour/vérification" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Insertions avec délai" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Désactiver la vérification des clés étrangères" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Utiliser l'hexadécimal pour un BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Ne pas insérer une ligne faisant doublon avec une clé unique" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Syntaxe à utiliser lors de l'insertion de données" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Taille maximum de la requête générée" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Type d'exportation" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Utiliser le mode transactionnel" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Exporter l'heure en format UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Force des connexions https entre le navigateur et phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Forcer les connexions SSL" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3626,152 +3614,152 @@ msgstr "" "Ordre du tri pour les éléments de clé étrangère; [kbd]content[/kbd] signifie " "la donnée référencée, [kbd]id[/kbd] représente la valeur de la clé" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Ordre dans le menu des clés étrangères" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" "Un menu déroulant sera utilisé si le nombre de valeurs est inférieur à cette " "limite" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Limite pour clé étrangère" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Mode affichage" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Personnaliser le mode affichage" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Personnaliser les options par défaut" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Dévelopeur" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Paramètres pour les développeurs phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Mode édition" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Personnaliser le mode édition" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Valeurs par défaut pour exportation" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Personnaliser les valeurs utilisées habituellement" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Fonctionnalités" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Général" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Réglage de quelques options couramment utilisées" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Valeurs par défaut pour importation" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Personnaliser les valeurs utilisées habituellement" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Importation / exportation" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" "Configurez les répertoires d'importation et d'exportation ainsi que les " "options de compression" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Options d'affichage des bases de données" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Panneau de navigation" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Personnaliser l'apparence du panneau de navigation" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Serveurs" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Options d'affichage des serveurs" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Options d'affichage des tables" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Panneau principal" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Texte Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Autres paramètres de base" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Paramètres divers" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Titres de page" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3781,22 +3769,22 @@ msgstr "" "[a@Documentation.html#cfg_TitleTable]documentation[/a] pour les chaînes " "magiques pouvant être utilisées." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Fenêtre de requête" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Personnaliser le panneau de requêtes" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Sécurité" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3804,23 +3792,23 @@ msgstr "" "Veuillez noter que phpMyAdmin n'est qu'une interface et que ses " "fonctionnalités ne limitent en rien MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Configuration de base" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Type d'authentification" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Paramètres d'authentification" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Configuration du serveur" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3828,15 +3816,15 @@ msgstr "" "Configuration avancée, assurez-vous de connaître la signification de ces " "options avant de les modifier" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Entrez les paramètres de connexion au serveur" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Stockage de configurations" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3846,11 +3834,11 @@ msgstr "" "fonctionnalités additionnelles, voir [a@Documentation.html#linked-tables]" "phpMyAdmin configuration storage[/a] dans la documentation" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Suivi des changements" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3858,44 +3846,44 @@ msgstr "" "Suivi des changements faits dans la base de données. Requiert le stockage de " "configurations phpMyAdmin." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Personnaliser les valeurs pour exportation" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Personnaliser les valeurs pour importation" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Personnaliser le cadre de navigation" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Personnaliser le cadre principal" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Requêtes SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Boîte de requêtes SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Personnaliser les liens affichés dans les boîtes de requêtes SQL" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Paramètres des requêtes SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "Validateur SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3907,43 +3895,43 @@ msgstr "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Page de départ" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Personnaliser la page de départ" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Onglets" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Personnaliser les onglets" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Champs texte" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Personnaliser les champs de saisie" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texte Texy!" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Avertissements" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Désactiver certains avertissements affichés" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3951,15 +3939,15 @@ msgstr "" "Active la compression [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] pour les " "opérations d'importation et d'exportation" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Paramètres pour iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3967,11 +3955,11 @@ msgstr "" "Si activé, phpMyAdmin continue le traitement des requêtes multi-énoncés même " "en cas d'échec de l'un des énoncés." -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignorer les erreurs dans les requêtes multi-énoncés" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3981,21 +3969,21 @@ msgstr "" "point d'être atteinte. Ceci pourrait aider à importer des fichiers " "volumineux, au détriment du respect des transactions." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Permettre l'interruption lors de l'importation" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Ne pas arrêter l'importation lors d'une erreur d'énoncé INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Remplacer les données de la table avec le fichier" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4003,88 +3991,88 @@ msgstr "" "Format par défaut; soyez conscient que cette liste dépend du contexte (base " "de données, table) et que seul SQL est toujours disponible" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Format du fichier d'importation" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Utiliser l'option LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Noms de colonnes en première ligne" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Ne pas importer les lignes vides" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importer les valeurs de monnaie ($5.00 devient 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importer les pourcentages en tant que décimales (12.00% devient .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Nombre de requêtes à sauter à partir du début" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Nombre de requêtes à ignorer" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne pas utiliser AUTO_INCREMENT pour la valeur zéro" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Valeur initiale des zones de glissement" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Le nombre de lignes qui peuvent être insérées à la fois." -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Nombre de lignes à insérer" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Cible de l'icône d'accès rapide" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Montrer le logo dans le panneau de navigation" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Affichage du logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Montrer le choix de serveurs au haut du panneau de navigation" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Affiche la liste des serveurs" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Nombre minimum de tables pour afficher la boîte de filtre de table" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Chaîne qui sépare les noms de bases de données en niveaux" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Séparateur pour l'arborescence des bases de données" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4092,41 +4080,41 @@ msgstr "" "En affichage léger; afficher les bases de données en arborescence (déterminé " "par le séparateur défini plus bas)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Montre les bases de données dans une arborescence" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" "Désactiver ceci si vous désirez voir toutes les bases de données d'un seul " "coup dans le panneau de navigation" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Active l'affichage léger" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Nombre de niveaux pour l'arborescence des tables" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Chaîne qui sépare les noms de table en niveaux" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Séparateur pour l'arborescence des noms de tables" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "L'URL vers lequel le logo dans le panneau de navigation pointera" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "URL du lien sous le logo" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4134,46 +4122,46 @@ msgstr "" "Pour la fenêtre principale, ([kbd]main[/kbd]) ou dans une nouvelle fenêtre, " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Fenêtre-cible pour la page ouverte lors d'un clic sur le logo" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Faire ressortir le nom du serveur dans le panneau de navigation" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Active la surbrillance" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Nombre maximum de tables récentes; mettre 0 pour désactiver" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Tables récemment utilisées" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Utiliser des onglets moins intenses graphiquement" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Onglets légers" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Nombre maximum de caractères affichés dans toute colonne non numérique en " "mode Afficher" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Limiter le nombre de caractères dans la colonne" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4182,11 +4170,11 @@ msgstr "" "Si TRUE, la déconnexion se produit pour tous les serveurs; si FALSE, on se " "déconnecte seulement du serveur courant." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Détruire tous les cookies à la déconnexion" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4194,11 +4182,11 @@ msgstr "" "Sur le panneau de connexion du mode cookie, le nom du précédent utilisateur " "devrait-il apparaître?" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Se souvenir du nom d'utilisateur" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4210,55 +4198,55 @@ msgstr "" "conservé que pour la session; ceci est recommandé si l'environnement n'est " "pas digne de confiance." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Stockage du cookie" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" "Définit pendant combien de temps (en secondes) la connexion demeure valide" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Durée de validité de la connexion en mode cookie" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Doubler la taille de la zone de texte pour les colonnes LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Zone de texte plus grande pour LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Utiliser des icônes sur la page principale" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Nombre maximum de caractères quand une requête SQL est affichée" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Taille maximum des requêtes SQL affichées" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Les utilisateurs ne peuvent choisir une plus grande valeur" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Nombre maximum de bases de données affichées dans le panneau de gauche et la " "liste des bases" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Nombre maximum de bases de données" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4269,19 +4257,19 @@ msgstr "" "« Suivant » et « Précé" "dent » seront affichés." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Nombre maximum de lignes à afficher" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Nombre maximum de tables affichées dans la liste des tables" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Nombre maximum de tables" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4289,11 +4277,11 @@ msgstr "" "Désactive l'avertissement par défaut qui est affiché si mcrypt est manquant " "pour l'authentification par cookie." -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "avertissement mcrypt" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4301,44 +4289,44 @@ msgstr "" "Le nombre d'octets qu'un script peut allouer, par exemple [kbd]32M[/kbd] " "([kbd]0[/kbd] signifie illimité)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Limite mémoire" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "Il s'agit des liens Modifier, Copier et Effacer" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "À quel endroit afficher les liens pour chaque ligne de données" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" "Utiliser l'ordre naturel pour trier les noms de tables et de bases de données" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Ordre naturel" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Afficher seulement des icônes, seulement du texte ou les deux" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Apparence de la barre de navigation" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "sert à augmenter la vitesse des transferts HTTP" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Tampon de sortie GZip" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4346,19 +4334,19 @@ msgstr "" "[kbd]SMART[/kbd] signifie un ordre décroissant pour les colonnes TIME, DATE, " "DATETIME et TIMESTAMP, et croissant pour les autres" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Ordre de tri par défaut" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "...au serveur MySQL" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Connexions persistantes" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4367,23 +4355,23 @@ msgstr "" "Désactiver l'avertissement affiché sur la page Structure de bases de données " "si l'une des tables du stockage de configurations phpMyAdmin est manquante" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Tables manquantes pour le stockage de configurations phpMyAdmin" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Icônes pour les actions sur les tables" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Empêche l'édition des colonnes BLOB et BINARY" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Protéger les colonnes avec contenu binaire" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4393,123 +4381,123 @@ msgstr "" "configurations phpMyAdmin). Si désactivé, utilise Javascript pour afficher " "un historique temporaire (sera perdu à la fermeture de la fenêtre)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Historique permanent des requêtes" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Le nombre de requêtes à conserver dans l'historique" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Taille de l'historique" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "L'onglet affiché à l'ouverture d'une fenêtre de requêtes." -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Onglet par défaut pour fenêtre de requêtes" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Hauteur de la fenêtre de requêtes (en pixels)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Hauteur de la fenêtre de requêtes" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Largeur de la fenêtre de requêtes (en pixels)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Largeur de la fenêtre de requêtes" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Détermine quelles fonctions seront utilisées pour effectuer la conversion " "des caractères" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Moteur de conversion" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "En affichant les tables, l'ordre de tri de chaque table est mémorisé" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Mémoriser l'ordre de tri de la table" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Répète les en-têtes toutes les X cellules, [kbd]0[/kbd] désactive ceci" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Répéter les en-têtes" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Affiche un bouton d'aide au lieu du message Documentation" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Afficher un bouton d'aide" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "Sauvegarder en une étape tous les éléments modifiés" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" "Répertoire où les exportations peuvent être sauvegardées sur le serveur" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Répertoire de sauvegarde" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Laisser vide si non utilisé" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Ordre d'autorisation des serveurs" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Laisser vide pour la valeur par défaut" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Règles d'autorisation des serveurs" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Permettre les connexions sans fournir de mot de passe" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Permettre une connexion à root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "Domaine de protection à afficher lors d'une authentification HTTP Basic" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "Domaine de protection HTTP" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4519,19 +4507,19 @@ msgstr "" "l'authentification matérielle Swekey[/a] (ne pas placer sous la racine des " "documents; suggestion : /etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "Fichier de configuration SweKey" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Type d'authentification" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Type d'authentification" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4539,11 +4527,11 @@ msgstr "" "Laisser vider pour désactiver le support des [a@http://wiki.phpmyadmin.net/" "pma/bookmark]signets[/a], suggéré : [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Table pour signets" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4551,33 +4539,33 @@ msgstr "" "Laisser vider pour désactiver les commentaires sur les colonnes et les types " "MIME; suggéré : [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Table pour informations sur les colonnes" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Comprime la connexion au serveur MySQL" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Utiliser le mode compression sur la connexion" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Comment se connecter au serveur, utilisez [kbd]tcp[/kbd] si vous êtes dans " "le doute" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Type de connexion" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Mot de passe de l'utilisateur de contrôle" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4585,30 +4573,30 @@ msgstr "" "Un compte MySQL spécial avec des permissions limitées, voir [a@http://wiki." "phpmyadmin.net/pma/controluser] notre wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Utilisateur de contrôle" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Comptage du nombre de tables en montrant la liste des bases de données" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Comptage des tables" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" "Laisser vider pour désactiver, suggéré : [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Table pour la fonctionnalité Concepteur" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4616,27 +4604,27 @@ msgstr "" "Voir [a@http://sf.net/support/tracker.php?aid=1849494]ce bogue phpMyAdmin[/" "a] et [a@http://bugs.mysql.com/19588]ce bogue MySQL[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Empêcher l'accès à INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Quelle extension PHP utiliser; vous devriez choisir mysqli si possible" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Extension PHP" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Masquer les bases dont le nom correspond à l'expression (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Masquer les bases de données" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4644,23 +4632,23 @@ msgstr "" "Laisser vider pour désactiver l'historique des requêtes SQL, suggéré : [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Tables pour historique des requêtes SQL" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Le nom du serveur sur lequel MySQL est en exécution." -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Nom du serveur" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "URL pour quitter" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" @@ -4668,19 +4656,19 @@ msgstr "" "Cette configuration assure que seulement les N (N = MaxTableUiprefs) plus " "récentes entrées dans «table_uiprefs» sont conservées" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Nombre maximum de lignes conservées dans la table «table_uiprefs»" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Essayer de se connecter sans mot de passe" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Connexion sans mot de passe" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4695,31 +4683,31 @@ msgstr "" "de liste pour montrer le reste des noms de base de données en ordre " "alphabétique." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Restreindre la liste des bases de données" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" "Laisser vide si vous n'utilisez pas la méthode d'authentification config" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Mot de passe pour méthode config" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Laisser vider pour désactiver le support des schémas en PDF, suggéré : [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "Table pour décrire les schémas en PDF" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4729,21 +4717,21 @@ msgstr "" "Voir [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Laisser vider pour " "désactiver. Suggéré : [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Nom de base de données" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Port sur lequel MySQL est en écoute, laisser vide pour utiliser la valeur " "par défaut" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Port" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4751,11 +4739,11 @@ msgstr "" "Laisser vide pour ne pas conserver de manière «persistante» les tables " "récemment utilisées, valeur suggérée : [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Table récemment utilisée" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4763,19 +4751,19 @@ msgstr "" "Laisser vider pour désactiver le support [a@http://wiki.phpmyadmin.net/pma/" "relation]relationnel[/a], suggéré : [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Table relationnelle" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "La commande SQL à utiliser pour acquérir la liste des bases de données" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "Commande SHOW DATABASES" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4783,42 +4771,42 @@ msgstr "" "Voir [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] pour un exemple" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Nom de session pour méthode signon" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "URL pour connexion" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Interface de connexion du serveur MySQL, laisser vide pour utiliser la " "valeur par défaut" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Interface de connexion socket" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Utiliser SSL pour la connexion au serveur MySQL" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Utiliser SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "Laisser vider pour désactiver, suggéré : [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "Table pour coordonnées du schéma en PDF" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4826,11 +4814,11 @@ msgstr "" "Sert à définir les colonnes descriptives, laisser vide pour désactiver; " "suggéré : [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Table pour colonnes descriptives" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4838,11 +4826,11 @@ msgstr "" "Laisser vider pour ne pas conserver les préférences d'interface de tables de " "manière «persistante», valeur suggérée : [kbd]pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Table de stockage des préférences d'interface de table" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4850,11 +4838,11 @@ msgstr "" "Définit si un énoncé DROP DATABASE IF EXISTS sera ajouté en première ligne " "du journal lors de la création d'une base de données." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Ajouter DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4862,11 +4850,11 @@ msgstr "" "Définit si un énoncé DROP TABLE IF EXISTS sera ajouté en première ligne du " "journal lors de la création d'une table." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Ajouter DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4874,21 +4862,21 @@ msgstr "" "Définit si un énoncé DROP VIEW IF EXISTS sera ajoutée en première ligne dans " "le journal lors de la création de la vue." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Ajouter DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Définit la liste des énoncés que le mécanisme d'auto-création utilise pour " "les nouvelles versions." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Énoncés à suivre" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4896,11 +4884,11 @@ msgstr "" "Laisser vider pour désactiver le suivi des changements SQL, valeur " "suggérée : [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Table pour le suivi des changements SQL" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4908,11 +4896,11 @@ msgstr "" "Définit si le mécanisme de suivi crée automatiquement des versions pour les " "tables et les vues." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Création automatique de versions" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" @@ -4920,15 +4908,15 @@ msgstr "" "Laisser vider pour désactiver les préférences utilisateur, valeur suggérée : " "[kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Table de stockage des préférences utilisateur" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Utilisateur pour méthode config" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4936,11 +4924,11 @@ msgstr "" "Désactiver si vous savez que vos tables pma_* sont à jour. Ceci contourne " "une vérification et améliore la performance" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Vérification détaillée" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4948,19 +4936,19 @@ msgstr "" "Une description conviviale de ce serveur. Laisser vide pour utiliser à la " "place le nom du serveur." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Nom à afficher pour ce serveur" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Devrait-on afficher un bouton «Tout afficher»" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Permettre l'affichage de toutes les lignes" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4970,15 +4958,15 @@ msgstr "" "cependant on peut exécuter un changement de mot de passe manuellement avec " "la commande appropriée" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Afficher le dialogue de changement de mot de passe" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Afficher le formulaire de création de base de données" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" @@ -4986,11 +4974,11 @@ msgstr "" "Définit si l'option de direction d'affichage est montrée lorsqu'on affiche " "le contenu d'une table" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Montrer le sélecteur de direction de l'affichage" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4998,27 +4986,27 @@ msgstr "" "Définit si les champs des types de données MySQL doivent être affichés en " "mode modification/insertion." -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Montrer les champs de type de données" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "En insertion/édition, montrer la colonne contenant les fonctions" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Montrer les fonctions" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "Afficher ou non les explications" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "Montrer les explications" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5026,46 +5014,46 @@ msgstr "" "Montre un lien vers le résultat de [a@http://php.net/manual/function.phpinfo." "php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Afficher un lien vers phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Afficher les informations détaillées sur le serveur MySQL" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Détermine si les requêtes SQL générées par phpMyAdmin devraient être " "affichées" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Afficher les requêtes SQL" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Affiche les statistiques sur les bases de données et les tables (espace " "utilisé)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Afficher les statistiques" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "Inverse l'affichage du nom et des commentaires" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" "Affiche le commentaire décrivant la base de données, au lieu de son nom" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5075,30 +5063,30 @@ msgstr "" "Si défini à [kbd]nested[/kbd], l'alias du nom de table ne sert qu'à " "subdiviser les tables selon $cfg['LeftFrameTableSeparator']" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Affiche le commentaire de table au lieu de son nom" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Affichage des commentaires de table en infobulle" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Marque les tables utilisées et rend possible l'affichage des bases de " "données comportant des tables verrouillées" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Saute les tables verrouillées" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Requiert que le validateur SQL soit activé" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5108,7 +5096,7 @@ msgstr "Requiert que le validateur SQL soit activé" msgid "Password" msgstr "Mot de passe" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5116,11 +5104,11 @@ msgstr "" "[strong]Avis:[/strong] l'extension PHP SOAP ou le module PEAR SOAP doit être " "installé" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Activer le validateur SQL" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5128,12 +5116,12 @@ msgstr "" "Si vous avez un code d'utilisateur, indiquez-le ici ([kbd]anonymous[/kbd] " "par défaut)" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Utilisateur" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5141,20 +5129,20 @@ msgstr "" "...dans le dialogue de création de base, si possible, sinon laisser le champ " "vide" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Suggérer un nom de nouvelle base de données" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Un avertissement est affiché sur la page principale si Suhosin est détecté" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Avertissement Suhosin" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5162,11 +5150,11 @@ msgstr "" "Taille des zones de texte (colonnes) en mode édition, cette valeur sera " "augmentée pour les zones SQL (*2) et la fenêtre de requêtes (*1.25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Taille horizontale pour une zone de texte" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5174,32 +5162,32 @@ msgstr "" "Taille des zones de texte (lignes) en mode édition, cette valeur sera " "augmentée pour les zones SQL (*2) et la fenêtre de requêtes (*1.25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Taille verticale pour une zone de texte" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" "Titre de la fenêtre de navigateur quand une base de données est choisie" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Titre de la fenêtre de navigateur quand rien n'est choisi" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Titre par défaut" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Titre de la fenêtre du navigateur quand un serveur est choisi" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Titre de la fenêtre du navigateur quand une table est choisie" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5211,29 +5199,29 @@ msgstr "" "Forwarded-For) provient du serveur 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste des serveurs mandataires de confiance en vue de IP allow/deny" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" "Répertoire sur le serveur, dans lequel vous téléchargez des fichiers en vue " "de les importer" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Répertoire de téléchargement" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Permet la recherche dans la base de données au complet" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Permet une recherche dans toute la base de données" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5241,11 +5229,11 @@ msgstr "" "Si désactivé, les utilisateurs ne peuvent régler aucune des options ci-bas, " "peu importe la case à cocher à droite" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Active le menu Développeur dans les paramètres" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5254,19 +5242,19 @@ msgstr "" "Montre le nombre de lignes affectées par chaque énoncé. Voir libraries/" "import.lib.php pour le nombre d'énoncés qu'une requête peut comporter." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Détails pour les requêtes multi-énoncés" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Vérifier la présence d'une nouvelle version" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Active la vérification de version sur la page principale" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5274,7 +5262,7 @@ msgstr "Active la vérification de version sur la page principale" msgid "Version check" msgstr "Vérification de version" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5282,7 +5270,7 @@ msgstr "" "Active la compression [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/" "a] pour les opérations d'importation et d'exportation" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5302,47 +5290,47 @@ msgstr "Mode d'authentification « HTTP »" msgid "Signon authentication" msgstr "Mode d'authentification « signon »" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV via LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Rapide" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Personnalisé" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Options d'exportation des bases de données" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV pour MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Texte Open Document" @@ -5519,9 +5507,8 @@ msgstr "Nouvelle table" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nom" @@ -5864,7 +5851,7 @@ msgid "Hide" msgstr "Cacher" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformation" @@ -6814,7 +6801,7 @@ msgstr "Nombre de colonnes invalide dans les données CSV à la ligne %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Nom de la table" @@ -7504,7 +7491,7 @@ msgstr "Paramètres" msgid "Direction" msgstr "Direction" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Taille/Valeurs*" @@ -7765,7 +7752,7 @@ msgstr "Table des matières" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Attributs" @@ -8061,7 +8048,7 @@ msgstr "La table semble vide !" msgid "Tracking of %s.%s is activated." msgstr "Le suivi de %s.%s est activé." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8073,7 +8060,7 @@ msgstr "" "apostrophe (\"'\") dans l'une de ces valeurs, faites-le précéder d'un " "antislash (par exemple '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8081,13 +8068,13 @@ msgstr "" "Pour les valeurs par défaut, veuillez n'entrer qu'une seule valeur, sans " "caractère d'échappement ou apostrophes, sous la forme: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Index" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8096,11 +8083,11 @@ msgstr "" "La %sdescription des transformations%s explique les transformations " "possibles en fonction des types MIME" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Options de transformation" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8112,34 +8099,34 @@ msgstr "" "ou une apostrophe (\"'\") parmi ces valeurs, faites-le précéder du caractère " "d'échappement, par exemple '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "Données trop longues pour ENUM ou SET?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Obtenir plus d'espace d'édition" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Aucune" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Tel que défini :" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primaire" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Texte entier" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8148,25 +8135,25 @@ msgstr "" "Aucune description n'est disponible pour cette transformation.
Veuillez " "demander à son auteur, des détails sur %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Ajouter %s colonne(s)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Vous devez ajouter au moins une colonne." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Moteur de stockage" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Définition de PARTITION" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Ajouter une valeur" @@ -13139,6 +13126,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] ou un nombre qui indique la " +#~ "valeur maximum pour lequel le mode vertical sera utilisé" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Direction de l'affichage pour modifier/créer des colonnes" + #~ msgid "Create table on database %s" #~ msgstr "Créer une nouvelle table sur la base %s" diff --git a/po/gl.po b/po/gl.po index 7792cc3646..8613c1a663 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-15 11:33+0200\n" "Last-Translator: \n" "Language-Team: galician \n" @@ -66,7 +66,7 @@ msgstr "Buscar" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Comentario da base de datos: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Comentarios da táboa" @@ -140,7 +140,7 @@ msgstr "Comentarios da táboa" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Columnas" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Columna" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Nulo" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Predeterminado" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Ligazóns a" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Comentarios" @@ -313,14 +313,14 @@ msgstr "Só os datos" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABSE antes de copiar" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Engadir %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" @@ -335,8 +335,8 @@ msgstr "Pasar á base de datos copiada" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Editar ou exportar esquema relacional" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -675,7 +675,7 @@ msgid "Check tables having overhead" msgstr "Exceso na comprobación" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -743,7 +743,7 @@ msgstr "Dicionario de datos" msgid "Tracked tables" msgstr "Táboas seguidas" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -818,12 +818,12 @@ msgstr "Seguir a táboa" msgid "Database Log" msgstr "Rexistro de actividade da base de datos" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1174,7 +1174,7 @@ msgstr "A recargar os privilexios" msgid "Removing Selected Users" msgstr "Eliminar os usuarios seleccionados" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Fechar" @@ -1182,7 +1182,7 @@ msgstr "Fechar" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Modificar" @@ -1430,7 +1430,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1656,7 +1656,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1707,7 +1707,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1872,7 +1872,7 @@ msgstr "Tempo máximo de execución" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2461,7 +2461,7 @@ msgstr "Non se definiu ningún índice" msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2499,7 +2499,7 @@ msgstr "" "Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase " "eliminar un deles" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2826,18 +2826,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Táboas" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2922,7 +2922,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "O nome de servidor non é válido para o servidor %1$s. Revise a configuración." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2996,7 +2996,7 @@ msgstr "Mensaxes do MySQL: " msgid "Failed to connect to SQL validator!" msgstr "Non se puido conectar co servidor de MySQL" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Explicar SQL" @@ -3008,11 +3008,11 @@ msgstr "Saltar a explicacion de SQL" msgid "Without PHP Code" msgstr "sen código PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Refrescar" @@ -3021,7 +3021,7 @@ msgstr "Refrescar" msgid "Skip Validate SQL" msgstr "Omitir a validacion de" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Validar o SQL" @@ -3137,20 +3137,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Estrutura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3363,7 +3363,7 @@ msgid "Set value: %s" msgstr "Poñer como valor: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Volver ao valor por omisión" @@ -3536,114 +3536,104 @@ msgid "Default display direction" msgstr "Opcións de exhibición das bases de datos" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "O separador que aparece cando se entra nunha base de datos" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Separador por omisión das bases de datos" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "O separador que aparece cando se entra nun servidor" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Separador por omisión dos servidores" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "O separador que aparece cando se entra nunha táboa" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Separador por omisión das táboas" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Mostrar o contido binario como HEX" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Mostrar o contido binario como HEX" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" "Mostrar a listaxe das bases de datos como listaxe no canto de nun menú " "despregábel" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Mostrar as bases de datos nunha listaxe" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" "Mostrar a listaxe dos servidores como listaxe no canto de nun menú " "despregábel" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Mostrar os servidores nunha listaxe" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Táboa de mantemento" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Modificar a fileira seguinte" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Mostrar as características" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Ignorar os erros" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Ignorar os erros" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3651,32 +3641,32 @@ msgstr "" "Indicar o número de segundos durante o que se permite que un script se " "execute ([kbd]0[/kbd] para non o limitar)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Tempo máximo de execución" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Enviar (gravar nun ficheiro)
" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Conxunto de caracteres do ficheiro" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Compresión" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3685,70 +3675,70 @@ msgstr "Compresión" msgid "Put columns names in the first row" msgstr "Pór os nomes dos campos na primeira fileira" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Os campos delimítanse con" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Os campos escápanse con" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Substituír NULL por " -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Eliminar os caracteres CRLF dentro dos campos" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "As liñas rematan por" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "As liñas rematan por" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edición mediante MS-Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Modelo de nome das bases de datos" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Modelo de nome dos servidores" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Modelo de nome dos ficheiros" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3756,124 +3746,124 @@ msgstr "Modelo de nome dos ficheiros" msgid "Dump table" msgstr "%s táboa(s)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Incluír o título da táboa" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Título da táboa" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Título da táboa continuado" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Chave da etiqueta" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Tipo MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relacións" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Tipo de exportación" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Gravar no servidor" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Eliminar o(s) ficheiro(s) xa existente(s)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Lembrar o modelo do nome de ficheiro" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Protexer os nomes das táboas e dos campos con \" ` \"" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Modo de compatiblidade SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Datas de creación/actualización/comprobación" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Usar insercións demoradas" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Desactivar as comprobacións de chaves exteriores" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal para BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Usar insercións ignoradas" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Lonxitude máxima da procura creada" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Exportar as táboas" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Incluír a exportación nunha transacción" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy #| msgid "Export contents" msgid "Export time in UTC" msgstr "Exportar o contido" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" "Obrigar a que se empregue unha conexión segura mentres se empregue o " "phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Obrigar a conectarse con SSL" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3881,180 +3871,180 @@ msgstr "" "Ordenación dos elementos dun menú despregábel de chaves alleas; [kbd]content" "[/kbd] son os datos referenciados, [kbd]id[/kbd] é o valor da chave" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Ordenación das chaves alleas" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Emprégase un menú despregábel de haber un número menor de elementos" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Límite das chaves alleas" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Modo de navegación" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Personalizar o modo de navegación" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Personalizar as opcións de exportación por omisión" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Modo de edición" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Personalizar o modo de edición" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Exportar o predeterminado" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Personalizar as opcións de exportación por omisión" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funcionalidades" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Xerar" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Opcións de importación por omisión" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Personalizar as opcións frecuentes de importación por omisión" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Importación / exportación" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" "Designe os directorios de importación e exportación e as opcións de " "compresión" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Opcións de exhibición das bases de datos" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Moldura de navegación" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Personalizar a aparencia da moldura de navegación" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servidores" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Opcións de exhibición dos servidores" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Opcións de exhibición das táboas" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Moldura principal" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Texto Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Outras opcións principais" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Configuracións que non cadraban noutra parte" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Número de páxina:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Xanela de procuras" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Personalizar as opcións da xanela de procuras" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Seguranza" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -4062,27 +4052,27 @@ msgstr "" "Lembre que o phpMyAdmin é simplemente unha interface de usuario e que as " "súas funcionalidades non se limitan ao MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Configuración básica" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Configuración do servidor" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -4090,17 +4080,17 @@ msgstr "" "Configuración avanzada do servidor; non altere estas opcións a non ser que " "saiba o que está a facer" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Introduza os parámetros da conexión ao servidor" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Ficheiro de configuración" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -4115,58 +4105,58 @@ msgstr "" "[a@../Documentation.html#linked-tables]infraestrutura de táboas ligadas[/a] " "na documentación" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Personalizar as opcións de exportación" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Personalizar as opcións de importación por omisión" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Personalizar a moldura de navegación" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Personalizar a moldura principal" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Solicitudes SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Caixa de Procuras SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Personalizar as ligazóns que aparecen nas caixas de Procura SQL" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "Solicitudes SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Historial de SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4174,49 +4164,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Inicio" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Personalizar a páxina de inicio" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Separadores" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Escolla como quere que funcionen os separadores" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Use campo de texto" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Personalizar as opcións de exportación" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texto para Texy!" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Advertencia" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4224,15 +4214,15 @@ msgstr "" "Activar a compresión [a@http://gl.wikipedia.org/wiki/Gzip]gzip[/a] nas " "operacións de importación e exportación" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Parámetros extra para iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4240,11 +4230,11 @@ msgstr "" "Se estiver activado, o phpMyAdmin continúa a calcular as procuras de " "afirmacións múltiplas mesmo se unha destas procuras fallase" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignorar os erros de afirmacións múltiplas" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4254,21 +4244,21 @@ msgstr "" "que se achega ao límite de tempo. Isto pode ser unha boa maneira de importar " "ficheiros grandes; porén, pode rachar as transaccións." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Importación parcial: permitir interromper" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Substituír os datos da táboa polos do ficheiro" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4276,98 +4266,98 @@ msgstr "" "Formato por omisión; lembre que esta listaxe depende da localización (base " "de datos, táboa) e só SQL está sempre dispoñíbel" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Formato do ficheiro importado" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Utilice a palabra chave LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Nomes das columnas na primeira fileira" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Non importar as fileiras baleiras" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Importar as moedas ($5.00 a 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importar as porcentaxes como decimais correctos (12.00% a .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Número de rexistros (procuras) que se ignoran desde o comezo" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Importación parcial: ignorar as procuras" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non empregar AUTO_INCREMENT cos valores cero" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Cantas fileiras se poden inserir dunha volta" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Número de fileiras inseridas" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Destino da icona de acceso rápido" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Mostrar o logotipo na moldura esquerda" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Mostrar o logotipo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Mostrar a escolla de servidor na parte superior da moldura esquerda" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Mostrar a selección de servidores" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of tables to display the table filter box" msgstr "Número máximo de táboas que se mostran na listaxe de táboas" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Cadea que separa as bases de datos en tres niveis distintos" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Separador da árbores das bases de datos" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4375,39 +4365,39 @@ msgstr "" "Só na versión lixeira; mostrar as bases de datos nunha árbore (determinada " "polo separador que se defina embaixo)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Mostrar as bases de datos nunha árbore" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Desactive isto se quere ver todas as bases de datos ao mesmo tempo" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Empregar a versión lixeira" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Profundidade máxima das táboas" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Cadea que separa as táboas en tres niveis distintos" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Separador da árbore de táboas" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "URL da ligazón ao logotipo" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4415,39 +4405,39 @@ msgstr "" "Abrir a páxina ligada na xanela principal ([kbd]principal[/kbd]) ou nunha " "nova ([kbd]nova[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Destino da ligazón do logotipo" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Resaltar o servidor que estea por baixo do cursor do rato" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Activar o resaltado" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Número máximo de táboas que se mostran na listaxe de táboas" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Táboas non seguidas" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Empregar separadores con menos carga gráfica" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Separadores lixeiros" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" @@ -4455,11 +4445,11 @@ msgid "" msgstr "" "Número máximo de caracteres empregados cando se mostra unha procura SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4470,11 +4460,11 @@ msgstr "" "FALSO fai que sexa máis doado esquecer saír dos outros servidores cando se " "está conectado a varios servidores." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Eliminar todas as cookies ao saír" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4482,11 +4472,11 @@ msgstr "" "Definir se se debe lembrar ou non o rexisto previo no modo de autenticación " "mediante cookies" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Lembrar o nome de usuario" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4498,55 +4488,55 @@ msgstr "" "existente e que se elimina cando se feche a xanela do navegador. Recoméndase " "isto para os ambientes que non sexan de confianza." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Almacenar as cookies de rexistro" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Definir por cantos segundos é válida unha cookie" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Validez das cookies de rexistro" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" "Número máximo de caracteres empregados cando se mostra unha procura SQL" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Lonxitude máxima de SQL que se mostra" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Número máximo de bases de datos que aparecen na moldura da esquerda e na " "listaxe de bases de datos" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Bases de datos máximas" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4556,29 +4546,29 @@ msgstr "" "resultados. Se o conxunto de resultados contén máis fileiras, aparecen as " "ligazóns "Anterior" and "Seguinte"." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Número máximo de fileiras que se mostran" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Número máximo de táboas que se mostran na listaxe de táboas" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Táboas máximas" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4586,47 +4576,47 @@ msgstr "" "O número de bytes que se permite asignar a un script, p.ex. [kbd]32M[/kbd] " "([kbd]0[/kbd] para non o limitar)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Límite da memoria" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Ordenar a táboa por" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Empregar só iconas, só texto ou ambos os dous" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Barra de navegación por iconas" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Empregar un búfer para a saída de GZip para atinxir unha maior velocidade " "nas transferencias HTTP" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Búfer para a saída de GZip" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -4638,46 +4628,46 @@ msgstr "" "[kbd]INTELIXENTE[/kbd] - isto é, orde descendente para os campos do tipo " "TIME, DATE, DATETIME e TIMESTAMP e ascendente para os demais" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Ordenación por omisión" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Empregar conexións persistentes coas bases de datos MySQL" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Conexións persistentes" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Operacións de tábocas con iconas" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Impedir que se poidan editar os ficheiros BLOB e BINARY" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Protexer os campos binarios" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -4691,135 +4681,135 @@ msgstr "" "Se estiver desactivado, utiliza rutinas JS para mostrar o historial de " "procuras (que se perde cando se fecha a xanela)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Historial de procuras permanente" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Cantas procuras se gardan no historial" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Lonxitude do historial de procuras" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "O separador que aparece cando se entra nunha xanela de procuras" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Separador por omisión das xanelas de procuras" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Xanela de procuras" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Xanela de procuras" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Xanela de procuras" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Seleccione as funcións que quere empregar para a conversión dos conxuntos de " "caracteres" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Motor de recodificación" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Mudar o nome da táboa para" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Reparar os fíos" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Directorio no que se poden gravar as exportacións no servidor" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Directorio de gardado" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Déixeo en branco se non o vai empregar" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Orde de autenticación do servidor" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Déixeo en branco para o predefinido" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Regras de autenticación do servidor" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Permitir rexistrarse sen contrasinal" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Permitir o rexistro de root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4829,19 +4819,19 @@ msgstr "" "de hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: /" "etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "Ficheiro de configuración SweKey" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Método de autenticación que se quere empregar" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4849,11 +4839,11 @@ msgstr "" "Déixeo en branco se non quere a funcionalidade de [a@http://wiki.phpmyadmin." "net/pma/bookmark]marcadores[/a]; por omisión: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Táboa de marcadores" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4861,31 +4851,31 @@ msgstr "" "Déixeo en branco se non quere comentarios/tipos mime das columnas; por " "omisión: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Táboa de información das columnas" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Comprimir a conexión ao servidor de MySQL" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Comprimir a conexión" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Como ligar co servidor; déixeo como tc se non está segura/a" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Tipo de conexión" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Contrasinal do usuario de control" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4894,19 +4884,19 @@ msgstr "" "información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" "[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Usuario de control" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Contar as táboas cando se mostre a listaxe de bases de datos" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Contar as táboas" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4914,11 +4904,11 @@ msgstr "" "Déixeo en branco se non quere empregar Designer; por omisión: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Táboa de Designer" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4927,28 +4917,28 @@ msgstr "" "Seguidor de erros dePMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do " "MySQL[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desactivar o uso de INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "O engadido de PHP que quere empregar; debería empregar mysqli se se admite" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Engadido PHP que empregar" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Acochar as bases de datos que coincidan cunha expresión regular (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Acochar as bases de datos" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4956,43 +4946,43 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Táboa do historial de procuras SQL query" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Nome da máquina na que se executa o servidor de MySQL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Nome do servidor" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "URL de desconexión" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Número máximo de táboas que se mostran na listaxe de táboas" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Tentar conectarse sen contrasinal" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Conectarse sen contrasinal" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -5008,30 +4998,30 @@ msgstr "" "empregar os caracteres en si, isto é, empregue 'aminha\\_bd' no canto de " "'amiña_bd'" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Mostrar só as bases de datos listadas" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Déixeo en branco se non vai empregar config auth" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Contrasinal para config auth" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_pdf_pages[/" "kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF schema: táboa de páxinas" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -5042,23 +5032,23 @@ msgstr "" "completa. Déixeo en branco se non lle interesan. Por omisión: [kbd]phpmyadmin" "[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nome da base de datos" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Porto polo que está a escoitar o servidor de MySQL server; déixeo en branco " "para deixar o predefinido" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Porto do servidor" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5070,13 +5060,13 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Lembrar o nome de usuario" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -5084,19 +5074,19 @@ msgstr "" "Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/relation]" "ligazóns de relación[/a]; por omisión: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Táboa de relacións" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "Comando SQL para obter as bases de datos dispoñíbeis" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "Mostrar o orde SHOW DATABASES" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -5104,45 +5094,45 @@ msgstr "" "Vexa os [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de " "autenticación[/a] se quere un exemplo" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Nome de sesión de rexistro de entrada" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "URL de rexistro de entrada" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Socket polo que está a escoitar o servidor de MySQL; déixeo en branco para " "deixar o predefinido" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Socket do servidor" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "Comprimir a conexión ao servidor de MySQL" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Empregar SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_table_coords" "[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF schema: coordenadas de táboa" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -5154,13 +5144,13 @@ msgstr "" "Táboa para describir os campos a exhibir; déixeo en branco se non a quere; " "por omisión: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Táboa de campos a exhibir" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5172,53 +5162,53 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Táboa de desfragmentación" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Informacións" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5230,25 +5220,25 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "Táboa do historial de procuras SQL query" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Modo de recuperación automática" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5260,15 +5250,15 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Usuario para config auth" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -5276,11 +5266,11 @@ msgstr "" "Desactíveo se sabe que as táboas pma_* tables están actualizadas. Isto evita " "as comprobacións de compatibilidade e, polo tanto, mellora o desempeño" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Comprobación estensa" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -5288,11 +5278,11 @@ msgstr "" "Unha descrición lexíbel deste servidor. Déixea en branco para que no seu " "canto apareza o nome da máquina." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Nome longo deste servidor" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -5301,11 +5291,11 @@ msgstr "" "Se se lle debería mostrar un botón "mostrar todos (rexistros)" ao " "usuario" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Permitir que se mostren todas as fileiras" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5316,57 +5306,57 @@ msgstr "" "configuración; isto non limita a capacidade de executar a mesmo orde " "directamente" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Mostrar o formulario para mudar de contrasinal" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Mostrar o formulario para crear bases de datos" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Databases display options" msgid "Show display direction" msgstr "Opcións de exhibición das bases de datos" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Mostrar as táboas abertas" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Mostrar os campos de función no modo editar/inserir" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Mostrar os campos de función" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Mostrar a grella" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5374,33 +5364,33 @@ msgstr "" "Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Mostrar a ligazón a phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Mostrar información detallada do servidor de MySQL" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Define se se deben mostrar as procuras SQL xeradas polo phpMyAdmin" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Mostrar as procuras SQL" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Permitir que se mostren as estatísticas das bases de datos e das táboas (p." "ex. o uso do espazo)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Mostrar as estatísticas" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5408,11 +5398,11 @@ msgstr "" "Se as mensaxes estiveren activadas e existir un comentario da base de datos, " "isto substitúe o comentario polo nome real" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Mostrar o comentario da base de datos no canto do seu nome" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5424,30 +5414,30 @@ msgstr "" "['LeftFrameTableSeparator'], polo que só o cartafol se chama como o alcume; " "o nome mesmo da táboa fica sen cambiar" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Mostrar o comentario da táboa no canto do seu nome" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Mostrar os comentarios das táboas nas mensaxes" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Marcar as táboas empregadas e permitir que se mostren as bases de datos con " "táboas bloqueadas" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Ignorar as táboas bloqueadas" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5457,28 +5447,28 @@ msgstr "" msgid "Password" msgstr "Contrasinal" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Nome de usuario" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5486,65 +5476,65 @@ msgstr "" "Suxerir un nome para as bases de datos no formulario "Crear base de " "datos" (de ser posíbel) ou manter o campo de texto baleiro" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Suxerir un nome novo para as bases de datos" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "Columnas de área de texto de CHAR" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "Fileiras de área de texto de CHAR" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Separador por omisión das táboas" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5556,38 +5546,38 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy 1.2.3.4:[br][kbd]" "1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Lista de proxies de confianza para permiso/denegación de IP" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" "Directorio do servidor ao que se poden enviar os ficheiros que importar" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Directorio de envíos" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Permitir procurar na base de datos completa" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Empregar procuras na base de datos" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5597,19 +5587,19 @@ msgstr "" "múltiplas. Vexa libraries/import.lib.php para o que está predeterminado para " "cantas procuras pode conter unha afirmación." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Afirmacións múltiplas estensas" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Comprobar cal é a última versión" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5617,7 +5607,7 @@ msgstr "" msgid "Version check" msgstr "Comprobación da versión" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5625,7 +5615,7 @@ msgstr "" "Activar a compresión [a@http://gl.wikipedia.org/wiki/ZIP_(formato de " "ficheiro)]ZIP[/a] nas operacións de importación e exportación" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5653,49 +5643,49 @@ msgstr "Orde de autenticación do servidor" msgid "Signon authentication" msgstr "Orde de autenticación do servidor" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV utilizando LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Folla de cálculo Open Document" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Cor personalizada" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcións de exportación da base de datos" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV (para datos de MS Excel)" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Texto Open Document" @@ -5882,9 +5872,8 @@ msgstr "Crear táboas" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nome" @@ -6298,7 +6287,7 @@ msgid "Hide" msgstr "Agochar" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformación do navegador" @@ -7251,7 +7240,7 @@ msgstr "A contaxe de campos non é válida na entrada de CSV na liña %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Nome da táboa" @@ -7982,7 +7971,7 @@ msgstr "" msgid "Direction" msgstr "Ligazóns directas" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Tamaño/Definir*" @@ -8293,7 +8282,7 @@ msgstr "Índice" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributos" @@ -8604,7 +8593,7 @@ msgstr "Parece ser que a táboa está baleira!" msgid "Tracking of %s.%s is activated." msgstr "Activouse o seguemento de %s.%s." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8622,7 +8611,7 @@ msgstr "" "ou aspas simples (\" ' \") entre estes valores, preceda a barra e as aspas " "de barras invertidas (por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8630,13 +8619,13 @@ msgstr "" "Para os valores por omisión, introduza un único valor, sen escapalo con " "barras ou aspas e empregando este formato: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Índice" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8645,11 +8634,11 @@ msgstr "" "Para unha lista das opcións de transformación dispoñíbeis e as súas " "transformacións de tipos MIME, prema %sdescricións de transformacións%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opcións de transformación" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8661,36 +8650,36 @@ msgstr "" "(\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de barra " "para trás (por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Ningunha" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Como se define:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primaria" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Texto completo" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8699,28 +8688,28 @@ msgstr "" "Non existe descrición desta transformación.
Pregúntelle ao autor que é " "o que fai %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Engadir columna(s)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Ten que engadir un campo polo menos" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Motor de almacenamento" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Definición da PARTICIÓN" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new server" msgid "+ Add a value" diff --git a/po/he.po b/po/he.po index 6be05485b6..2ff13c0cb3 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" @@ -63,7 +63,7 @@ msgstr "חיפוש" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -125,7 +125,7 @@ msgid "Database comment: " msgstr "הערה על מאגר הנתונים: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "הערות טבלה" @@ -135,7 +135,7 @@ msgstr "הערות טבלה" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -153,7 +153,7 @@ msgstr "שמות עמודה" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -165,7 +165,7 @@ msgstr "סוג" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -176,7 +176,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "ברירת מחדל" @@ -190,13 +190,13 @@ msgid "Links to" msgstr "קישורים אל" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "הערות" @@ -313,14 +313,14 @@ msgstr "מידע בלבד" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE לפני העתקה" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" @@ -335,8 +335,8 @@ msgstr "מעבר למאגר נתונים שהועתק" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -361,7 +361,7 @@ msgid "Edit or export relational schema" msgstr "הצגת תרשים PDF" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -686,7 +686,7 @@ msgid "Check tables having overhead" msgstr "בדיקת טבלאות עבור תקורה" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -752,7 +752,7 @@ msgstr "מילון מידע" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -832,12 +832,12 @@ msgstr "בדיקת טבלה" msgid "Database Log" msgstr "מאגר נתונים" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1173,7 +1173,7 @@ msgstr "הרשאות גלובליות" msgid "Removing Selected Users" msgstr "הסרת משתמשים שנבחרו" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1181,7 +1181,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "עריכה" @@ -1417,7 +1417,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1642,7 +1642,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1692,7 +1692,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1849,7 +1849,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2422,7 +2422,7 @@ msgstr "אין אינדקסים מוגדרים!" msgid "Indexes" msgstr "אינדקסים" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2459,7 +2459,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2763,18 +2763,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "טבלאות" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2848,7 +2848,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2920,7 +2920,7 @@ msgstr "MySQL אמר: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "הסברת SQL" @@ -2932,11 +2932,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "ללא קוד PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "ייצור קוד PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "רענון" @@ -2946,7 +2946,7 @@ msgstr "רענון" msgid "Skip Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "בדיקת תקינות SQL" @@ -3062,20 +3062,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "מבנה" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3285,7 +3285,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3435,208 +3435,198 @@ msgid "Default display direction" msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "שינוי שם מאגר נתונים אל" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "אחזקת טבלה" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "עריכת השורה הבאה" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "הצגת תכונות" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "שמירה כקובץ" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "חבילת הקידוד של הקובץ:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "תבנית" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "דחיסה" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "שדות מוקפים ע\"י" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "הורדת שדות עם" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "החלפת NULL ע\"י" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "שורות מסתיימות ע\"י" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "שורות מסתיימות ע\"י" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "מהדורת Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3644,400 +3634,400 @@ msgstr "תבנית שם קובץ" msgid "Dump table" msgstr "%s טבלאות" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "כלול כותרת טבלה" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "כותרת טבלה" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "כותרת טבלה מומשך" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "מפתח תווית" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "סוג MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "יחסים" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "סוג ייצוא" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "תבנית שם קובץ" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "צירוף תוי ציטוט (backquotes) אל שמות טבלאות ושדות" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "יצירת/עדכון/בדיקת תאריכים" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "השתמש בהכנסות מעוכבות" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "השתמש בהעלמות מהכנסות" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "סוג ייצוא" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "סוג ייצוא" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "ייצור" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "קבצי ייבוא" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "שרת" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "תיעוד" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "מספר דף:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "תיעוד" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "שאילתת SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "שאילתת SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "שאילתת SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "היסטוריית SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4045,288 +4035,288 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "מצב" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "טבלה" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "השתמש בשדה טקסט" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "החלפת נתוני הטבלה עם הקובץ" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Column names" msgid "Column names in first row" msgstr "שמות עמודה" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "ניתוח טבלה" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4334,453 +4324,453 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "גבולות משאבים" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "שינוי סדר הטבלה לפי" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "שינוי שם טבלה אל" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "תיקיית בית של נתונים" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "חיבורים" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "אין טבלאות" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "איחוי טבלה" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "אין מאגרי נתונים" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "בחירת שרת" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4789,345 +4779,345 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "מאגר נתונים" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "קוד שרת (ID)" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "ניתוח טבלה" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "תיקון טבלה" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "בחירת שרת" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "מציג הערות עמודה" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "איחוי טבלה" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "משפטים" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "Automatically create versions" msgstr "גרסת שרת" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "ראיית טבלאות" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "הראה רשת" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "הראה שאילתות שלמות" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "סטטיסטיקת שורה" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5135,28 +5125,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5166,91 +5156,91 @@ msgstr "" msgid "Password" msgstr "סיסמא" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "שם משתמש:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ברירת מחדל" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5258,56 +5248,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5315,13 +5305,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5341,47 +5331,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV עבור MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5555,9 +5545,8 @@ msgstr "יצירת עמוד חדש" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "שם" @@ -5935,7 +5924,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 #, fuzzy msgid "Browser transformation" msgstr "שינויי צורה זמינים" @@ -6821,7 +6810,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7522,7 +7511,7 @@ msgstr "" msgid "Direction" msgstr "יצירה" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "אורך/ערכים*" @@ -7811,7 +7800,7 @@ msgstr "תוכן עניניים" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "תכונות" @@ -8111,7 +8100,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8129,7 +8118,7 @@ msgstr "" "(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' or 'a" "\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8137,25 +8126,25 @@ msgstr "" "לערכי ברירת מחדל, אנא הכנס רק ערך בודד, ללא סימני ציטוט או לוכסנים, השתמש " "בתבנית הזאת : a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "אינדקס" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 #, fuzzy msgid "Transformation options" msgstr "לתבנית זאת אין אפשרויות" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -8168,64 +8157,64 @@ msgstr "" "(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' or 'a" "\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "ללא" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "ראשי" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Fulltext" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "הוספת %s תאים" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "אתה חייב להוסיף לפחות שדה אחד." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "מנוע אחסון" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "הוספת משתמש חדש" diff --git a/po/hi.po b/po/hi.po index eebc53b6d1..11ff27c5ea 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-07-24 19:04+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" @@ -65,7 +65,7 @@ msgstr "ढूंढें" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -129,7 +129,7 @@ msgid "Database comment: " msgstr "डाटाबेस टिप्पणि: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "टेबल टिप्पणि:" @@ -139,7 +139,7 @@ msgstr "टेबल टिप्पणि:" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -155,7 +155,7 @@ msgstr "स्तम्भ" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -167,7 +167,7 @@ msgstr "प्रकार/किस्म" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -178,7 +178,7 @@ msgstr "शून्य" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "तयशुदा" @@ -192,13 +192,13 @@ msgid "Links to" msgstr "के लिए लिंक" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "टिप्पणी" @@ -312,14 +312,14 @@ msgstr "केवल डाटा" msgid "CREATE DATABASE before copying" msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "%s जोडें" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" @@ -334,8 +334,8 @@ msgstr "नक़ल किये गए डाटाबेस पर जाय #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -356,7 +356,7 @@ msgid "Edit or export relational schema" msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें " #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -665,7 +665,7 @@ msgid "Check tables having overhead" msgstr "ओवर्हेअद वाली तालुकाओं को चेक करें." #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -727,7 +727,7 @@ msgstr "डेटा शब्दकोश" msgid "Tracked tables" msgstr "ट्रैक की गयी टेबलएं" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -802,12 +802,12 @@ msgstr "टेबलओं को ट्रैक करें" msgid "Database Log" msgstr "डेटाबेस का रोजनामचा" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "\"%s\" काँलम के लिए मान " -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "हर एक मान अलग क्षेत्र में दर्ज करें." @@ -1148,7 +1148,7 @@ msgstr "प्रिविलेज पुनः लोड करें" msgid "Removing Selected Users" msgstr "चयनित यूसर को हटायें" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "बंद" @@ -1156,7 +1156,7 @@ msgstr "बंद" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "सम्पादन" @@ -1402,7 +1402,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1631,7 +1631,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1682,7 +1682,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1825,7 +1825,7 @@ msgstr "अधिकतम निष्पादन समय" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2351,7 +2351,7 @@ msgstr "परिभाषित सूचकांक नहीं पाए msgid "Indexes" msgstr "सूचकांक" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2387,7 +2387,7 @@ msgid "" "removed." msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2701,18 +2701,18 @@ msgid "shared" msgstr "साझा" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "टेबल" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2787,7 +2787,7 @@ msgstr "अवैध सर्वर सूचकांक: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2859,7 +2859,7 @@ msgstr "MySQL ने कहा: " msgid "Failed to connect to SQL validator!" msgstr "SQL वलिदटर से जुड़ने में विफल" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL की व्याख्या " @@ -2871,11 +2871,11 @@ msgstr "SQL की व्याख्या को छोड़ जाना" msgid "Without PHP Code" msgstr "php कोड के बिना" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP Code बनाओ" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "ताज़ा करना" @@ -2884,7 +2884,7 @@ msgstr "ताज़ा करना" msgid "Skip Validate SQL" msgstr "SQL की पुष्टि को छोड़ जाना" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL की पुष्टि करना" @@ -3000,20 +3000,20 @@ msgid "Click to toggle" msgstr "चयन करने के लिए क्लिक करें." #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "संरचना" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3214,7 +3214,7 @@ msgid "Set value: %s" msgstr "मान निर्धारित: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "मूलभूत मान को बहाल" @@ -3370,306 +3370,294 @@ msgid "Default display direction" msgstr "मूलभूत प्रदर्शन दिशा" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"क्षैतिज, खड़ी या एक नंबर संकेत करता है कि अधिक से अधिक संख्या है जिसके लिए खड़ी मॉडल का " -"उपयोग किया है" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "कॉलम बनाने या फेरबदल के लिए प्रदर्शन दिशा" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "टैब जो डेटाबेस में प्रवेश करते प्रदर्शित किया जाता है" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "डिफ़ॉल्ट डेटाबेस टैब" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "टैब जो सर्वर में प्रवेश करते प्रदर्शित किया जाता है" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "डिफ़ॉल्ट सर्वर टैब" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "टैब जो सूची में प्रवेश करते प्रदर्शित किया जाता है" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "डिफ़ॉल्ट सूची टैब" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "डिफ़ॉल्ट रूप से द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "डेटाबेस लिस्टिंग को ड्रॉपडाउन के बजाय सूची की तरह देखियें" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "डेटाबेस सूची की तरह देखें" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "सर्वर लिस्टिंग को ड्रॉपडाउन के बजाय सूची की तरह देखियें" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "सर्वर सूची की तरह देखें" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "टेबल रख-रखाव" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "पॉपअप विंडो में क्वरीों को संपादित करें" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "विंडो में संपादित करें" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "त्रुटिय दिखाओ" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "त्रुटियों को इकट्ठा करें" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "चेतावनी, त्रुटियों और संदेशों की जानकारी के लिए चिह्न को प्रकाशित करें" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "शिल्प त्रुटियाँ" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "एक स्क्रिप्ट को चलाने की अवधि दें, (शून्य - कोई सीमा नहीं)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "अधिकतम निष्पादन समय" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "फाईल मे सेव करें" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "फ़ाइल का चरित्र सेट" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "प्रारूप" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "संक्षिप्तीकरण" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "काँलम नाम प्रथम रो में" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "काँलम इस से घिरा" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "कॉलम द्वारा बच" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "शून्य की जगह पर" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "CRLF चरित्र को कोलम से हटायें" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "काँलम समाप्त होता है" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "लाईन समाप्त होता है" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "एक्सेल संस्करण" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "डेटाबेस नाम टेम्पलेट" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "सर्वर नाम टेम्पलेट" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "टेबल नाम टेम्पलेट" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "टेबल दुम्प करें" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "टैब शीर्षक में शामिल" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "टेबल शीर्षक" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "टेबल शीर्षक निरंतर" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "लेबल कुंजी" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME प्रकार" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "संबंध" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "निर्यात प्रकार" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "सर्वर पर सेव करें" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "मौजूदा फ़ाइल अधिलेखित करें" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "टेम्पलेट फ़ाइल नाम याद रखें" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "टेबल और फील्ड के नाम को backquotes से बंद करें " -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL संगतता मोड" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "निर्माण/अद्यतन/जाँच दिनांक" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "विलंबित इनसर्टस" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "निष्क्रिय विदेशी कुंजी चेक" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "BLOB के लिए hexadecimal का प्रयोग करें" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "आवेषण उपेक्षा का प्रयोग करें" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "डेटा दल्तें समय वाक्यविन्यास का उपयोग करें" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "क्वेरी के अधिकतम लंबाई" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "निर्यात प्रकार" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "एक सौदे में बंद निर्यात" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "UTC में निर्यात समय" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "phpMyAdmin का प्रयोग करते समय सुरक्षित कनेक्शन रखें" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "SSL कनेक्शन रखें" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3677,148 +3665,148 @@ msgstr "" "एक विदेशी कुंजी ड्रॉपडाउन बॉक्स में आइटम्स के लिए सॉर्ट क्रम; सामग्री संदर्भित डेटा, आईडी है " "महत्वपूर्ण मूल्य है" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "विदेशी कुंजी ड्रॉपडाउन क्रम" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "अगर कम आइटम मौजूद हैं एक ड्रॉपडाउन का उपयोग किया जाएगा" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "विदेशी कुंजी सीमा" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "ब्राउज़ करें" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "ब्राउज़ मोड अनुकूलित" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "डिफ़ॉल्ट विकल्प अनुकूलित" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "डेवलपर" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "phpMyAdmin डेवलपर के लिए सेटिंग्स" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "संपादन मोड" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "संपादन मोड अनुकूलित" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "निर्यात डिफ़ॉल्ट" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "डिफ़ॉल्ट निर्यात विकल्पों को अनुकूलित करें" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "विशेषताएँ" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "सामान्य" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "कुछ सामान्यतः प्रयोग किया जाता विकल्प सेट" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "आयात" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "डिफ़ॉल्ट आयात विकल्पों को अनुकूलित करें" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "आयात / निर्यात" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "आयात और निर्यात निर्देशिका और संपीड़न विकल्प सेट करें" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "डेटाबेस प्रदर्शन विकल्प" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "नेविगेशन फ्रेम" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "नेविगेशन फ्रेम की दिखावट को अनुकूलित करें" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "सर्वर" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "सर्वर प्रदर्शन विकल्प" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "टेबल प्रदर्शन विकल्प" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "मुख्य फ्रेम" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "माइक्रोसॉफ्ट ऑफिस" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "दस्तावेज़ खोलें" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "अन्य मुख्य सेटिंग्स" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "सेटिंग्स जो कहीं भी फिट नहीं थी" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "पृष्ठ शीर्षक" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3827,59 +3815,59 @@ msgstr "" "निर्दिष्ट ब्राउज़र की शीर्षक पट्टी पाठ. [a@Documentation.html#cfg_TitleTable]" "documentation[/a] जादू स्ट्रिंग को विशेष मान पाने के लिए इस्तेमाल किया जा सकता है." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "क्वरी पेज" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "क्वेरी विंडो विकल्पों को अनुकूलित करें" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "सुरक्षा" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" "कृपया याद रखें phpMyAdmin एक अंतरफलक है और इसकी विशेषताओं MySQL को सीमित नहीं करती" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "मूल सेटिंग्स" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "प्रमाणीकरण" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "प्रमाणीकरण सेटिंग्स" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "सर्वर विन्यास" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "उन्नत सर्वर विन्यास,अगर आप इनके बारे मैं नहीं जानते तो इन्हें मत बदलें" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "सर्वर कनेक्शन पैरामीटर दाखिल करें" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "विन्यास भंडारण" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3889,55 +3877,55 @@ msgstr "" "ज्यादा जानकारी के लिए [a@Documentation.html#linked-tables]phpMyAdmin " "configuration storage[/a]" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "परिवर्तन ट्रैकिंग" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" "डेटाबेस ट्रैकिंग में किए गए परिवर्तन. phpMyAdmin विन्यास भंडारण की आवश्यकता होती है." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "निर्यात विकल्पों को अनुकूलित करें" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "आयात विकल्पों को अनुकूलित करें" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "नेविगेशन फ्रेम को अनुकूलित करें" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "मुख्य फ्रेम को अनुकूलित करें" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL क्वरी" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL क्वरी बॉक्स" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "SQL क्वरी बॉक्स में दिखाए गए लिंक्स को अनुकूलित करें" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL क्वेरी सेटिंग्स" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL- पुष्टि करता" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3948,43 +3936,43 @@ msgstr "" "बयान गुमनाम सांख्यिकीय प्रयोजनों के लिए ईमानदार डेटाबेस तकनीक जमा हो जाना चाहिए, " "कॉपीराइट 2002 . सभी अधिकार सुरक्षित." -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "स्टार्टअप" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "स्टार्टअप पेज अनुकूलित करें" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "टैब्स" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "चुनें कि आप टैब्स काम करना चाहते हैं" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "पाठ फ़ील्ड" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "टेक्स्ट फ़ील्ड जानकारी को अनुकूलित करें" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! टेक्स्ट" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "चेतावनी" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "phpMyAdmin द्वारा दिखाए चेतावनी निष्क्रिय करें" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3992,26 +3980,26 @@ msgstr "" "आयात और निर्यात के संचालन के लिए सक्षम संपीड़न [a@http://en.wikipedia.org/wiki/Gzip]" "gzip[/a] " -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "iconv के लिए अतिरिक्त पैरामीटर" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" "अगर सक्रिय है, phpMyAdmin एकाधिक बयान प्रश्नों कंप्यूटिंग जारी भले ही एक प्रश्न का असफल " -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "कई बयान त्रुटियों उपेक्षा" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4020,21 +4008,21 @@ msgstr "" "मामले लिपि में आयात की अनुमति दें अंतरायन का पता लगाता है यह समय सीमा के करीब है. यह " "अच्छा करने के लिए बड़ी फ़ाइलों आयात तरीका हो, लेकिन यह लेनदेन तोड़ सकते हो सकता है." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "आंशिक आयात दखल की अनुमति" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "इन्सर्ट त्रुटी मैं मत छोड़ों" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "फाइल, टेबल डेटा की जगह" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4042,175 +4030,175 @@ msgstr "" "डिफ़ॉल्ट स्वरूप; पता होना चाहिए कि इस सूची में स्थान (डेटाबेस, तालिका) पर निर्भर करता है " "और केवल SQL हमेशा उपलब्ध है" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "आयात की गई फ़ाइल का प्रारूप" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "कीवर्ड LOCAL का प्रयोग" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "कोलम के नाम पहली रो में" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "खाली रोयाँ आयात नहीं" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "आयात मुद्राओं ($5.00 से 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "प्रतिशत को उचित दशमलव के रूप में आयात करें" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "प्रश्नों की संख्या शुरू से ही छोड़ने के लिए" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "आंशिक आयात: क्वरीों को छोड़" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "शुन्य मूल्य के लिए AUTO_INCREMENT का प्रयोग न करें" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "स्लाइडर्स के लिए प्रारंभिक अवस्था" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "एक समय पर कितनी पक्न्तियों को डाला जा सकता है" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "डाली गयी पक्न्तियों" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "त्वरित पहुँच आइकन के लिए लक्ष्य" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "बाईं फ्रेम में लोगो देखियें" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "लोगो प्रदर्शन करें" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "बाएं फ्रेम के शीर्ष पर सर्वर विकल्प" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "सर्वर चयन प्रदशित करें" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "टेबल फिल्टर बॉक्स प्रदर्शित करने के लिए टेबल की न्यूनतम संख्या" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "स्ट्रिंग जो डेटाबेस को अलग स्तरों में बांटती है" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "डेटाबेस स्तर अलगानेवाला" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" "केवल प्रकाश संस्करण, एक पेड़ में प्रदर्शित डेटाबेस (नीचे परिभाषित विभाजक द्वारा निर्धारित)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "डेटाबेस को स्तरों की तरह देखियें" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "इस अक्षम करें अगर आप एक ही बार में सभी डेटाबेस देखना चाहते हैं" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "सरल संस्करण का उपयोग" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "अधिकतम टेबल स्तर गहराई" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "स्ट्रिंग जो टेबल को अलग स्तरों में बांटती है" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "टेबल स्तर अलगानेवाला" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "नेविगेशन फ्रेम में URL यहाँ इंगित" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "लोगो लिंक URL" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "लोगो लिंक लक्ष्य" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "कर्सर के तहत सर्वर पर प्रकाश डाला" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "उजागर सक्षम" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "प्रदर्शित टेबल की अधिकतम संख्या" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "लापता टेबलएं" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "कम रेखांकन तीव्र टैब्स का प्रयोग" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "कम टैब्स" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "किसी भी गैर सांख्यिक स्तंभ में दिखाया गया है अक्षरों की अधिकतम संख्या पर विचार ब्राउज़" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "काँलम वर्ण सीमा" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4219,22 +4207,22 @@ msgstr "" "अगर TRUE, लोगौत सभी सर्वर की कुकी हटा देगा| अगर FALSE, लोगौत सिर्फ वर्तमान सर्वर से " "होगा| इसे FALSE रखने से सर्वर लोगौत भूल सकते हैं, जब आप ज्यादा सर्वर से कनेक्ट हों " -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "लॉगआउट पर सभी कुकीज़ हटाना" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" "परिभाषित करें कि पिछले लॉगइन या याद किया जाना चाहिए कुकी प्रमाणीकरण मोड में या नहीं" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "याद यूसर नाम" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4245,52 +4233,52 @@ msgstr "" "चाहिए. 0 मतलब का मूलभूत है कि यह केवल मौजूदा सत्र के लिए रखा जाएगा, और जैसे ही आप " "ब्राउज़र विंडो को बंद हटा दिया जाएगा. इस गैर विश्वसनीय वातावरण के लिए सिफारिश की है." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "लॉगिन कुकी भंडार" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "परिभाषित करें की एक लोगिन कुकी कितने समय थक मान्य है" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "लॉगिन कुकी वैधता" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "LONGTEXT काँलम के लिए textarea का आकर दुगना करें" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEST के लिए बड़ा आकर" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "मुख्य पृष्ठ पर चिह्नका उपयोग" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "SQL प्रदर्शित अधिकतम अक्षर" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "SQL प्रदर्शित अधिकतम लम्बाई" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "यूसरओं एक उच्च मूल्य निर्धारित नहीं कर सकते" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "बाएं नेविगेशन फ्रेम प्रदर्शित डेटाबेस की अधिकतम संख्या" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "डेटाबेस की अधिकतम संख्या" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4299,92 +4287,92 @@ msgstr "" "परिणाम सेट में से प्रदर्शित रों की संख्या, अगर सेट में ज्यादा रो हैं तो "पिछले" और " ""अगला" लिंक दिखाएँ जायेंगे" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "प्रदर्शित रो की अधिकतम संख्या" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "प्रदर्शित टेबल की अधिकतम संख्या" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "अधिकतम सारणी" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "अगर mcrypt कुकी प्रमाणीकरण अक्षम है डिफ़ॉल्ट चेतावनी रदर्शित होता अक्षम है" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt चेतावनी" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" "एक लिपि को कितने बाइट्स दिए जायेंगे, eg. [kbd]32M[/kbd], [kbd]0[/kbd] मतलब असीमित " -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "स्मृति सीमा" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links" msgstr "ये हैं संपादित करें, इनलाइन संपादन, प्रतिलिपि बनाएँ और हटाएँ लिंक" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "टेबल और डेटाबेस नाम सॉर्ट करने के लिए प्राकृतिक व्यवस्था का उपयोग" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "प्राकृतिक आदेश" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "उपयोग चिह्न, पाठ या दोनों" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "प्रतिष्ठित नेविगेशन पट्टी" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "तेज HTTPट्रान्सफर के लिए GZip आउटपुट बफरिंग का उपयोग करें" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip आउटपुट बफरिंग" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "डिफ़ॉल्ट सॉर्ट क्रम" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL के लिए लगातार कनेक्शन का उपयोग" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "के लिए" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4393,203 +4381,203 @@ msgstr "" "डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर " "phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका " -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "चिह्न टेबल ऑपरेटरों" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB और BINARY काँलम को एडिट नहीं किया जा सकता" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "बाइनरी काँलम की रक्षा" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "स्थायी क्वरी इतिहास" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "इतिहास में कितने क्वरी रखने है" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "क्वरी इतिहास लंबाई" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "टैब प्रदर्शित जब एक क्वेरी विंडो खोलें" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "मूलभूत क्वरी विंडो टैब" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "क्वेरी विंडो ऊंचाई (पिक्सेल्स में)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "क्वेरी विंडो ऊंचाई" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "क्वेरी विंडो चौड़ाई (पिक्सेल्स में)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "क्वेरी विंडो चौड़ाई" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "चरित्र रूपांतरण के लिए functions चुने" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "टेबल का नाम बदलें" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "हर सेल्स बाद हेडर दोहराना, [kbd]0[/kbd] इस सुविधा को निष्क्रिय करें" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "हेडर दोहराना" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "प्रलेखन पाठ दिखाने के बजाय मदद बटन दिखाएँ" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "मदद बटन दिखाएँ" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "निर्देशिका जहां निर्यात सर्वर पर सहेजा जा सकता है" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "निर्देशिका बचाना" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "इस्तेमाल नहीं तो खाली छोड़ें" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "होस्ट प्राधिकरण आदेश" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "डिफ़ॉल्ट के लिए खाली छोड़ें" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "होस्ट प्राधिकरण नियम" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "पासवर्ड के बिना प्रवेश की अनुमति" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "रूट लॉगिन की अनुमति" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm name to display when doing HTTP Auth" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "http दायरे" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey config फाइल" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "प्रमाणीकरण विधि उपयोग करने के लिए" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "प्रमाणीकरण पद्धति का उपयोग" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "बुकमार्क टेबल" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "काँलम जानकारी टेबल" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "MySQL सर्वर कनेक्शन संक्षिप्त करना" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "कनेक्शन संक्षिप्त करना" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "सर्वर से कैसे कनेक्ट करें, [kbd]tcp[/kbd] रखें अगर अनिश्चित" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "कनेक्शन के प्रकार" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "यूसर पासवर्ड नियंत्रण" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4597,56 +4585,56 @@ msgstr "" "एक विशेष MySQL सर्वर सीमित अनुमति के साथ, ज्यादा जानकारी के लिए [a@http://wiki." "phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "नियंत्रण यूसर" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "डेटाबेस सूची दिखाते समय टेबल गणना करें" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "टेबल गणना" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "डिजाइनर टेबल" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA का उपयोग असमर्थ करें" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "किस PHPएक्सटेंशन का उपयोग करें, अगर समर्थित तो, आपको mysqli चुनना चाहिए" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "PHP विस्तार का उपयोग करें" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "डेटाबेस छिपाना" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4654,43 +4642,43 @@ msgstr "" "अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL इतिहास क्वेरी टेबल" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "होस्ट नाम जहाँ MySQL सर्वर चल रहा है" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "सर्वर होस्ट नाम" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "लॉगआउट URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "प्रदर्शित टेबल की अधिकतम संख्या" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "पासवर्ड के बिना कनेक्ट करने का प्रयास" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "पासवर्ड के बिना कनेक्ट करें" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4699,48 +4687,48 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "केवल सूचीबद्ध डेटाबेस दिखाएँ" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "अगर विन्यास प्राधिकरण का उपयोग नहीं तो खाली छोड़ दें" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "विन्यास प्राधिकरण के लिए पासवर्ड" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF स्कीमा: पृष्ठों टेबल" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "डेटाबेस नाम" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "MySQL सर्वर किस port पर सुन रहा है: डिफ़ॉल्ट के लिए खाली छोड़" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "सर्वर" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -4751,80 +4739,80 @@ msgid "" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "याद यूसर नाम" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "संबंध टेबल" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "उपलब्ध डेटाबेस लाने के लिए प्रशन" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES आदेश" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "signon सत्र नाम" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL किस गर्तिका पर सुन रहा है: डिफ़ॉल्ट के लिए खाली छोड़" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "सर्वर गर्तिका" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "MySQL कनेक्शन के लिए SSL सक्षम करने" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "SSL का उपयोग" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "काँलम टेबल दिखाएँ" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -4834,33 +4822,33 @@ msgid "" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "यूसर वरीयताओं की भंडारण टेबल" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "ड्रॉप डेटाबेस जोड़ें" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "ड्रॉप टेबल जोड़ें" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4868,39 +4856,39 @@ msgstr "" "क्या DROP VIEW IF EXISTS बयान पहली लाइन की तरह जोड़े जायेगा, जब एक दृश्य का लोग बन " "रहा है" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "DROP VIEW जोडें" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "बयान ट्रैक करने के लिए" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "SQL क्वरी ट्रैकिंग टेबल" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "स्वतः संस्करण बनाना" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -4911,138 +4899,138 @@ msgid "" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "यूसर वरीयताओं की भंडारण टेबल" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "विन्यास प्राधिकरण के लिए यूसर" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "चेक वाचाल" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "इस सर्वर का विवरण, होस्ट नाम दिखने के लिए खाली छोडें" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "इस सर्वर का वाचाल नाम" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "क्या एक उसेर को "show all (rows)" बटन दिखाना है" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "सभी रोयों को प्रदर्शित करने की अनुमति" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "पासवर्ड बदलने के फार्म" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "डेटाबेस बनाने का फार्म" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "मूलभूत प्रदर्शन दिशा" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "फ़ील्ड प्रकार दिखाएँ" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "ग्रिड दिखाओ" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "phpinfo() लिंक दिखाएँ" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "विस्तृत mysql सर्वर जानकारी" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "क्या phpMyAdmin द्वारा उत्पन SQL प्रशन प्रदर्शित करनी है" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "SQL प्रशन दिखाएँ" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "डेटाबेस और टेबल आँकड़े प्रदर्शित करने की अनुमति दें" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "आँकड़े दिखाएँ" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "डेटाबेस के नाम के बजाय टिप्पणी प्रदर्शित करें" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5050,28 +5038,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "टेबल के नाम के बजाय टिप्पणी प्रदर्शित करें" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "प्रदर्शन टूलटिप्स में टेबल टिप्पणियाँ " -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "बंद टेबलओं को छोड़" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5081,87 +5069,87 @@ msgstr "" msgid "Password" msgstr "पासवर्ड" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "SQL मान्य करता सक्षम" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" "अगर आप एक कस्टम यूसर हैं,तो यहाँ निर्दिष्ट करें, (defaults to [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "यूसर नाम" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "नए डेटाबेस नाम का सुझाव" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "अगर Suhosin का पता चलता है तो चेतावनी दी जाएगी" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin चेतावनी" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "क्षेत्र रोयाँ" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "ब्राउज़र विंडो का शीर्षक है जब एक डेटाबेस का चयन किया " -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी डेटाबेस का चयन नहीं किया है" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "डिफ़ॉल्ट शीर्षक" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "ब्राउज़र विंडो का शीर्षक है जब एक सर्वर का चयन किया" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी सर्वर का चयन नहीं किया है" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5169,56 +5157,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "विश्वसनीय proxies की सूची IP ​​अनुमति / इनकार के लिए" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "सर्वर पर निर्देशिका जहाँ आप आयात करने के लिए फाइल अपलोड कर सकते हैं" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "अपलोड निर्देशिका" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "संपूर्ण डेटाबेस के अंदर तलाश करने के लिए अनुमति" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "डेटाबेस खोज का प्रयोग" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "सेटिंग्स में डेवलपर टैब को सक्रिय करें" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "वाचाल बयान" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "नवीनतम संस्करण के लिए जाँच" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "phpMyAdmin के मुख्य पृष्ठ पर नवीनतम संस्करण के लिए जाँच की अनुमति" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5226,13 +5214,13 @@ msgstr "phpMyAdmin के मुख्य पृष्ठ पर नवीनत msgid "Version check" msgstr "संस्करण की जांच" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5252,47 +5240,47 @@ msgstr "HTTP प्रमाणीकरण" msgid "Signon authentication" msgstr "signon प्रमाणीकरण" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "तुरंत" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "कस्टम" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "डेटाबेस निर्यात विकल्प" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV for MX Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5466,9 +5454,8 @@ msgstr "टेबल बनायें" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "नाम" @@ -5804,7 +5791,7 @@ msgid "Hide" msgstr "छिपाना" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "सामग्री दिखाने" @@ -6681,7 +6668,7 @@ msgstr "CSV इनपुट में अवैध काँलम गिनत msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "टेबल का नाम" @@ -7389,7 +7376,7 @@ msgstr "" msgid "Direction" msgstr "सीधे संपर्क" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "लंबाई/अर्थ*" @@ -7699,7 +7686,7 @@ msgstr "लेख - सूची" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "विशेषता" @@ -7991,7 +7978,7 @@ msgstr "टेबल खली लग रही है" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7999,30 +7986,30 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "सूची" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "परिवर्तन के विकल्प" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8030,64 +8017,64 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "ENUM या SET डेटा बहुत लंबा है" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "अधिक संपादन स्थान की जरूरत" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "No" msgctxt "for default" msgid "None" msgstr "डिफ़ॉल्ट के लिए" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "जैसे परिभाषित:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "प्राथमिक" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "प्राथमिक" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s क्षेत्र जोडें" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "आपको कम से कम एक स्तंभ प्रदर्शित करने के लिए चयन करना है." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new User" msgid "+ Add a value" @@ -12736,6 +12723,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "क्षैतिज, खड़ी या एक नंबर संकेत करता है कि अधिक से अधिक संख्या है जिसके लिए खड़ी मॉडल " +#~ "का उपयोग किया है" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "कॉलम बनाने या फेरबदल के लिए प्रदर्शन दिशा" + #~ msgid "Create table on database %s" #~ msgstr "%s डाटाबेस मे नया टेबल बनाओ" diff --git a/po/hr.po b/po/hr.po index 40833ece39..761ca4856f 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" @@ -67,7 +67,7 @@ msgstr "Traži" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -131,7 +131,7 @@ msgid "Database comment: " msgstr "Komentar baze podataka: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Komentari tablice" @@ -141,7 +141,7 @@ msgstr "Komentari tablice" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -159,7 +159,7 @@ msgstr "Nazivi stupaca" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -171,7 +171,7 @@ msgstr "Vrsta" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -182,7 +182,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Zadano" @@ -196,13 +196,13 @@ msgid "Links to" msgstr "Povezano s" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Komentari" @@ -319,14 +319,14 @@ msgstr "Samo podatke" msgid "CREATE DATABASE before copying" msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" @@ -341,8 +341,8 @@ msgstr "Prebaci se na kopiranu bazu podataka" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -368,7 +368,7 @@ msgid "Edit or export relational schema" msgstr "Shema relacija" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -694,7 +694,7 @@ msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -762,7 +762,7 @@ msgstr "Rječnik podataka" msgid "Tracked tables" msgstr "Provjeri tablicu" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -844,12 +844,12 @@ msgstr "Provjeri tablicu" msgid "Database Log" msgstr "Baza podataka" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1205,7 +1205,7 @@ msgstr "Ponovno učitavanje privilegija" msgid "Removing Selected Users" msgstr "Ukloni odabrane korisnike" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1213,7 +1213,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Uređivanje" @@ -1458,7 +1458,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1682,7 +1682,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1733,7 +1733,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1891,7 +1891,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2472,7 +2472,7 @@ msgstr "Nema definiranog indeksa!" msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2509,7 +2509,7 @@ msgid "" msgstr "" "Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2823,18 +2823,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tablice" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2917,7 +2917,7 @@ msgstr "" "Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju " "konfiguraciju." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2989,7 +2989,7 @@ msgstr "MySQL je poručio: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Objasni SQL" @@ -3001,11 +3001,11 @@ msgstr "Preskoči Objasni SQL" msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Izradi PHP kod" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Osvježi" @@ -3014,7 +3014,7 @@ msgstr "Osvježi" msgid "Skip Validate SQL" msgstr "Preskoči provjeru valjanosti SQL-a" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Provjera valjanosti SQL-a" @@ -3130,20 +3130,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Strukturu" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3355,7 +3355,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3505,139 +3505,129 @@ msgid "Default display direction" msgstr "Opcije izvoza baze podataka" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Preimenuj bazu podataka u" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Preimenuj bazu podataka u" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Preimenuj bazu podataka u" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Održavanje tablice" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Uredi sljedeći redak" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Osobine prikaza" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Spremi kao datoteku" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Tablica znakova za datoteku:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Oblikovanje" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3646,71 +3636,71 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Nazive polja stavi u prvi red" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Polja obuhvaćena po" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Polja izostavljena po" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "NULL zamijeni s" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Redovi završeni s" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Redovi završeni s" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel izdanje" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3718,404 +3708,404 @@ msgstr "Predložak naziva datoteka" msgid "Dump table" msgstr "%s tablica" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Uključi naslov tablice" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Naslov tablice" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Nastavljeni naslov tablice" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Ključ oznake" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME vrsta" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Unesi nazive tablica i polja sa stražnjim navodnicima" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Način rada SQL kompatibilnosti" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Izrada/Ažuriranje/Provjera datuma" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Upotrijebi odgođena umetanja" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Onemogući provjere stranih znakova" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Za BLOB upotrijebi heksadecimalno" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Upotrijebi ignoriranje umetaka" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Najveća duljina izrađenog upita" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Izvoz uključi u transakciju" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "Export defaults" msgstr "Uvezi datoteke" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 #, fuzzy msgid "Customize default export options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generiraj" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Uvezi datoteke" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Poslužitelji" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 #, fuzzy msgid "Servers display options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 #, fuzzy msgid "Tables display options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Otvori tekst dokumenta" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Broj stranice:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 #, fuzzy msgid "Customize query window options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy msgid "Authentication settings" msgstr "Replikacija" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 #, fuzzy msgid "Customize import defaults" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL upit" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL upit" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL upit" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL povijest" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4123,72 +4113,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Stanje" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Tablica" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Upotrijebi tekstualno polje" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -4199,222 +4189,222 @@ msgstr "" "ograničenja. Ovo bi mogao biti dobar način uvoza velikih datoteka, ali može " "prekinuti transakcije." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Podatke tablice zamijeni datotekom" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Oblikovanje uvezene datoteke" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Upotrijebi lokalnu ključnu riječ" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Nazive polja stavi u prvi red" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Broj zapisa (upita) koje je potrebno preskočiti od početka" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 #, fuzzy msgid "Number of inserted rows" msgstr "Broj presloženih redaka." -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "Broj otvorenih tablica." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 #, fuzzy msgid "Database tree separator" msgstr "Predložak naziva datoteka" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 #, fuzzy msgid "Use light version" msgstr "MySQL verzija klijenta" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Recently used tables" msgstr "Provjeri tablicu" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4422,457 +4412,457 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Maximum databases" msgstr "Nema baza podataka" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Ograničenja resursa" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Izmijeni rasporede tablice po" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Preimenuj tablicu u" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Popravi grane" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "Osnovna mapa podataka" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Veze" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Nema tablica" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Defragmentiraj tablicu" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 #, fuzzy msgid "PHP extension to use" msgstr "PHP ekstenzija" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Nema baza podataka" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "naziv poslužitelja" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4881,347 +4871,347 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "naziv baze podataka" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "ID poslužitelja" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analiziraj tablicu" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Popravi tablicu" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Odabir poslužitelja" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Prikazivanje stupca komentara" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentiraj tablicu" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Izjave" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Rad s automatskim povratom" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Prikaži otvorene tablice" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Prikaži mrežu" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Prikaži pune upite" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Statistike redova" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5229,29 +5219,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 #, fuzzy msgid "Skip locked tables" msgstr "Prikaži otvorene tablice" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5261,90 +5251,90 @@ msgstr "" msgid "Password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy msgid "Default title" msgstr "Preimenuj bazu podataka u" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5352,57 +5342,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 #, fuzzy msgid "Upload directory" msgstr "Osnovna mapa podataka" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5410,13 +5400,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5436,49 +5426,49 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV upotrebom LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Otvori izračunsku tablicu dokumenta" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Prilagođena boja" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Otvori tekst dokumenta" @@ -5657,9 +5647,8 @@ msgstr "Izradi tablicu" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Naziv" @@ -6060,7 +6049,7 @@ msgid "Hide" msgstr "Sakrij" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Pretvaranje preglednika" @@ -7004,7 +6993,7 @@ msgstr "Neispravan broj polja u CSV unosu unutar retka %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Naziv tablice" @@ -7711,7 +7700,7 @@ msgstr "" msgid "Direction" msgstr "Izravne veze" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Duljina/Vrijednosti" @@ -8011,7 +8000,7 @@ msgstr "Sadržaj tablice" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributi" @@ -8324,7 +8313,7 @@ msgstr "Tablica izgleda praznom!" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8342,7 +8331,7 @@ msgstr "" "\") or a single quote (\"'\") amongst those values, precede it with a " "backslash (for example '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8350,13 +8339,13 @@ msgstr "" "Za zadane vrijednosti unesite samo jednu vrijednost, bez kosih crta ili " "navodnika, u sljedećem obliku: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8365,11 +8354,11 @@ msgstr "" "Za popis raspoloživih opcija preoblikovanja i njihovih MIME vrsta " "oblikovanja, pritisnite %sopcije preoblikovanja%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opcije preoblikovanja" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8381,36 +8370,36 @@ msgstr "" "jednostruki navodnik (\"'\") unutar ovih vrijednosti, ispred znaka stavite " "lijevu kosu crtu (na primjer: '\\\\xyz' ili 'a\\'B')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "bez kompresije" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Kako je definirano:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primarni" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Puni tekst" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8419,28 +8408,28 @@ msgstr "" "Za ovo preoblikovanje ne postoji raspoloživ opis.
Molimo da od autora " "zatražite objašnjenje rada %s ." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s polja" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Morate dodati najmanje jedno polje." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Pogon pohrane" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Definicija PARTICIJE" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Dodaj novog korisnika" diff --git a/po/hu.po b/po/hu.po index 0ca3134e3f..e66c4da463 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" @@ -66,7 +66,7 @@ msgstr "Keresés" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Megjegyzés az adatbázishoz: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Tábla megjegyzése" @@ -140,7 +140,7 @@ msgstr "Tábla megjegyzése" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Oszlop" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Típus" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Nulla" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Alapértelmezett" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Hivatkozások:" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Megjegyzések" @@ -313,14 +313,14 @@ msgstr "Csak az adatok" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE másolás előtt" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "%s hozzáadása" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" @@ -335,8 +335,8 @@ msgstr "A másolt adatbázisra váltás" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Kapcsolati séma szerkesztése, exportálása" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -672,7 +672,7 @@ msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -734,7 +734,7 @@ msgstr "Adatkönyvtár" msgid "Tracked tables" msgstr "Nyomon követett táblák" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -809,12 +809,12 @@ msgstr "Tábla nyomon követése" msgid "Database Log" msgstr "Adatbázis Log" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "\"%s\" oszlop értékei" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Minden értéket külön mezőben adjon meg." @@ -1166,7 +1166,7 @@ msgstr "A jogok újratöltése" msgid "Removing Selected Users" msgstr "A kijelölt felhasználók törlése" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Bezárás" @@ -1174,7 +1174,7 @@ msgstr "Bezárás" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Módosítás" @@ -1418,7 +1418,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1645,7 +1645,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1696,7 +1696,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1840,7 +1840,7 @@ msgstr "Végrehajtási idő legfeljebb" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2369,7 +2369,7 @@ msgstr "Nincs meghatározott index!" msgid "Indexes" msgstr "Indexek" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2407,7 +2407,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2725,18 +2725,18 @@ msgid "shared" msgstr "megosztott" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Táblák" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2813,7 +2813,7 @@ msgstr "Érvénytelen szerverindex: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "A(z) %1$s szerver hosztneve érvénytelen. Ellenőrizze a beállításokat." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2885,7 +2885,7 @@ msgstr "A MySQL mondta: " msgid "Failed to connect to SQL validator!" msgstr "Nem lehetett kapcsolódni a MySQL-validátorhoz" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Az SQL magyarázata" @@ -2897,11 +2897,11 @@ msgstr "SQL magyarázat átugrása" msgid "Without PHP Code" msgstr "PHP kód nélkül" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP-kód létrehozása" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Frissítés" @@ -2910,7 +2910,7 @@ msgstr "Frissítés" msgid "Skip Validate SQL" msgstr "SQL érvényesítés átugrása" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL érvényesítése" @@ -3026,20 +3026,20 @@ msgid "Click to toggle" msgstr "Kattintson a kijelöléshez." #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Szerkezet" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3241,7 +3241,7 @@ msgid "Set value: %s" msgstr "Adja meg az értéket: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Alapértelmezett érték visszaállítása" @@ -3407,104 +3407,92 @@ msgid "Default display direction" msgstr "Alapértelmezett megjelenítési irány" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd], vagy egy szám, ami megadja a " -"maximum vertikális modellek számát" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Megjelenítés iránya oszlopok szerkesztése/létrehozása esetén" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Az adatbázisba belépéskor megjelenített fül" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Alapértelmezett adatbázis fül" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "A szerverre belépéskor megjelenített fül" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Alapértelmezett szerver fül" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "A táblába belépéskor megjelenített fül" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Alapértelmezett tábla fül" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Bináris tartalom megjelenítése HEX-ként, mint alapértelmezett" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Bináris tartalom megjelenítése HEX-ként" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Az adatbázisok legördülő helyett listaként történő megjelenítése" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Az adatbázisok megjelenítése listaként" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "A szerverek legördülő helyett listaként történő megjelenítése" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "A szerverek megjelenítése listaként" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Tábla karbantartása" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "SQL lekérdezések szerkesztése felugró ablakban" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Szerkesztés ablakban" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Hibák megjelenítése" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Hibák összegyűjtése" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" "Ikonok mutatása figyelmeztetések, hibaüzenetek, és információs üzenetek " "esetén" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Ikonnal kapcsolatos hibák" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3512,205 +3500,205 @@ msgstr "" "Adja meg a másodpercek számát, amíg egy parancsfájl futása engedélyezett " "([kbd]0[/kbd], ha korlátlan)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Végrehajtási idő legfeljebb" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Mentés fájlként" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "A fájl karakterkészlete" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formátum" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Tömörítés" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "A mezőneveket az első sorba teszi" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Mező lezárása" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Mező escape karakter" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "NULL cseréje ezzel:" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "A mezőkben lévő CRLF karakterek eltávolítása" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Mezők vége" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Sorok vége" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel változat" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Adatbázisnév-sablon" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Szervernév-sablon" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Táblanév-sablon" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Dump tábla" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Tartalmazza a táblacímet" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Táblacím" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Táblacím folytatása" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Feliratkulcs" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-típus" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Kapcsolatok" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Exportálás módja" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Mentés a szerveren" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "A létező fájl(ok) felülírása" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "A fájlnévsablon megjegyzése" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Idézőjelek használata a tábla- és mezőneveknél" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL kompatibilitási mód" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Létrehozás/módosítás/ellenőrzés dátuma" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Késleltetett beszúrások használata" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Az idegen kulcsok ellenőrzésének letiltása" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Hexadecimális értékek használata a BLOB művelethez" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Mellőző beszúrások használata" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Adat beillesztésére vonatkozó szintaxis" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "A létrehozott lekérdezés hossza legfeljebb" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Exportálás típusa" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Az exportálás befoglalása egy tranzakcióban" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Exportálás időzónája UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Biztonságos kapcsolat kényszerítése a phpMyAdmin használata során" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "SSL kapcsolat kényszerítése" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3718,150 +3706,150 @@ msgstr "" "Az elemek sorrendje egy idegen kulcs legördülő panelban; [kbd]tartalom[/" "kbd]: hivatkozott adat, [kbd]id[/kbd]: a kulcs értéke" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Az idegen kulcs legördülő sorrendje" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Legördülő lesz használatban, ha kevesebb elem van jelen" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Idegen kulcs korlátozása" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Tallózó mód" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "A tallózó mód testreszabása" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Alapértelmezett beállítások testreszabása" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Fejlesztő" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "phpMyAdmin fejlesztők beállításai" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Szerkesztő mód" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "A szerkesztő mód testreszabása" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Exportálás alapértelmezései" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Az exportálás alapértelmezett beállításainak testreszabása" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funkciók" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Általános" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Gyakran használt opciók beállítása" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Importálás alapértelmezései" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Az importálás alapértelmezett, gyakori beállításainak testreszabása" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Importálás / exportálás" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" "Az importálás és az exportálás könyvtárának megadása, ill. a tömörítés " "beállítása" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Az adatbázisok megjelenítésének beállításai" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigációs keret" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "A navigációs keret megjelenésének testreszabása" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Szerverek" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "A szerverek megjelenítésének beállításai" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "A táblák megjelenítésének beállításai" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Főkeret" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document szöveges dokumentum" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Egyéb alapbeállítások" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "A sehova sem illő beállítások" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Oldalcímek" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3871,22 +3859,22 @@ msgstr "" "[a@Documentation.html#cfg_TitleTable]dokumentációra[/a] a mágikus parancsok " "végett, amiket speciális értékek megjelenítésére használhat." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Lekérdezés ablak" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "A lekérdezés ablak beállításainak testreszabása" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Biztonság" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3894,23 +3882,23 @@ msgstr "" "Ne feledje, hogy a phpMyAdmin csak egy felhasználói kezelőfelület, s " "funkciói nem korlátozzák a MySQL-t" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Alapbeállítások" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Hitelesítés típusa" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Hitelesítés beállításai" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Szerverbeállítások" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3918,15 +3906,15 @@ msgstr "" "Speciális szerverbeállítások, melyeket ne módosítson, ha nem tudja, hogy " "mire valók" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Írja be a szerver csatlakozási paramétereit" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Konfigurációs tároló" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3936,11 +3924,11 @@ msgstr "" "hozzáférést, hivatkozzon a [a@Documentation.html#linked-tables]phpMyadmin " "konfigurációs tárolók[/a] fejezetet a dokumentációban" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Változások követése" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3948,44 +3936,44 @@ msgstr "" "Változások követése az adatbázisban. phpMyAdmin konfigurációs tároló " "szükséges." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Exportálás beállításainak testreszabása" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Importálás alapértelmezéseinek testreszabása" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "A navigációs keret testreszabása" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "A főkeret testreszabása" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL-lekérdezések" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL-lekérdezési panelek" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Az SQL-lekérdezési panelekben látható hivatkozások testreszabása" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL-lekérdezések beállításai" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL-validátor" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3998,43 +3986,43 @@ msgstr "" "Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. All " "rights reserved.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Indítás" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "A kezdőlap testreszabása" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Fülek" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Válassza ki, hogyan kívánja használni a füleket" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Szöveges mezők" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Szöveges beviteli mezők testreszabása" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! szöveg" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Figyelmeztetések" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Egyes phpMyAdmin által megjelenített figyelmeztetések letiltása" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4042,15 +4030,15 @@ msgstr "" "A [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] tömörítés engedélyezése az " "importálási és az exportálási műveletekhez" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Az iconv funkció extra paraméterei" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4058,11 +4046,11 @@ msgstr "" "Ha engedélyezett, akkor a PMA folytatja a több utasításból álló lekérdezések " "kiszámítását, ha nem sikerült az egyik lekérdezés" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Több utasítás hibáinak figyelmen kívül hagyása" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4072,21 +4060,21 @@ msgstr "" "szerint közel van az időkorláthoz. Ez a nagy fájlok importálásának lehet jó " "módja, azonban megszakíthatja a tranzakciókat." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Részleges importálás: a megszakítás engedélyezése" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Ne legyen megszakítás INSERT hiba esetén" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "A táblaadatok lecserélése fájlra" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4094,88 +4082,88 @@ msgstr "" "Alapértelmezett formátum, mely függ a helytől (adatbázis, tábla) és csak az " "SQL mindig elérhető" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Az importált fájl formátuma" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "LOCAL kulcsszó használata" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "A mezőnevek az első sorban" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Ne importáljon üres sorokat" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Valuták importálása ($5.00-5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Százalékos értékek importálása pontos tizedestörtként" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Az elejétől kihagyandó lekérdezések száma" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Részleges importálás: lekérdezések kihagyása" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT-et ne használjon zéró értékekhez" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Csúszkák kezdeti állapota" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Hány sor szúrható be egyszerre" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "A beszúrt sorok száma" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "A gyors hozzáférés ikon célja" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "A logo megjelenítése a bal oldali keretben" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "A logó megjelenítése" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "A választható szerverek megjelenítése a bal oldali keret tetején" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "A választható szerverek megjelenítése" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "A filter-doboz megjelenítéséhez szükséges minimális táblák száma" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Az adatbázisokat különféle fa szintekre elválasztó karakterlánc" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Az adatbázisfa elválasztója" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4183,39 +4171,39 @@ msgstr "" "Csak az egyszerűsített változatban; az adatbázisok megjelenítése faként (az " "alább megadott elválasztó által megállapítva)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Az adatbázisok megjelenítése fa szerkezetként" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Tiltsa ezt le, ha egyszerre kívánja megtekinteni az összes adatbázist" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Egyszerűsített változat használata" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "A táblafa mélysége legfeljebb" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "A táblákat különféle fa szintekre tagoló karakterlánc" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Táblafa elválasztó" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL, ahová a navigációs keretben lévő logo fog mutatni" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "A logó hivatkozásának URL-címe" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4223,50 +4211,50 @@ msgstr "" "A hivatkozott oldal megnyitása a(z) ([kbd]main[/kbd]) főablakban vagy újban " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "A logó hivatkozásának célja" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "A szerver kiemelése az egérmutató alatt" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "A szövegkiemelés engedélyezése" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "A táblalistában megjelenítendő táblák száma" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Nem követett táblák" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Grafikusan kevésbé kiemelt fülek használata" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Világos fülek" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "A mutatott karakterek maximális száma nem numerikus mező esetén a tallózás " "nézetben" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Mező-karakterek korlátozása" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4277,11 +4265,11 @@ msgstr "" "szerver használata esetén könnyen megfeledkezhet a másik szerverről " "kijelentkezésről." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Kijelentkezéskor az összes cookie törlése" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4289,11 +4277,11 @@ msgstr "" "Meghatározza, hogy az előző bejelentkezést kell-e újrahívni a cookie-s " "hitelesítési módban" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "A felhasználónév újrahívása" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4305,55 +4293,55 @@ msgstr "" "munkamenetekhez kerül megtartásra, vagyis a böngésző ablakának bezárásakor " "azonnal törlésre kerül. Ez nem megbízható környezetek esetén ajánlott." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "A bejelentkezési cookie tárolása" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" "Meghatározza, hogy meddig érvényes (másodpercben) egy bejelentkezési cookie" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "A bejelentkezési cookie érvényessége" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "A LONGTEXT mezők méretének duplára növelése" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Nagyobb LONGTEXT szövegbeviteli mezők" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Ikonok használata a főoldalon" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" "Egy SQL-lekérdezés megjelenítésekor használt karakterek száma legfeljebb" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "A SQL kijelzett hossza legfeljebb" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "A felhasználók nem adhatnak meg nagyobb értéket" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "A bal oldali keretben és az adatbázislistában látható adatbázisok száma" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Az adatbázisok száma" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4363,19 +4351,19 @@ msgstr "" "eredményhalmaz több sort tartalmaz, akkor az "Előző" és a "" "Következő" hivatkozás lesz látható." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "A megjelenítendő sorok száma" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "A táblalistában megjelenítendő táblák száma" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "A táblák száma" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4383,11 +4371,11 @@ msgstr "" "Alapértelmezett figyelmeztetés kikapcsolása, ha az mcrypt hiányzik a cookie " "hitelesítéshez" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt figyelmeztetés" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4395,47 +4383,47 @@ msgstr "" "Egy parancsfájl számára a lefoglaláshoz engedélyezett bájtok száma, pl. [kbd]" "32M[/kbd] (korlátlan: [kbd]0[/kbd])" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "A memória korlátozása" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links" msgstr "Ezek a Szerkesztés, Inline szerkesztés, Másolás és Törlés linkek" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" "Használjon természetes rendezést a tábla, és adatbázis nevek sorrendjéhez" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Természetes rendezés" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Csak ikonok, csak szöveg, vagy mindkettő használata" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Navigációs sáv ikonokkal" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "A GZip-kimenet pufferelése a HTTP-átvitelekben megnövekedett sebességhez" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip-kimenet pufferelése" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4443,19 +4431,19 @@ msgstr "" "[kbd]SMART[/kbd] - pl. a TIME, DATE, DATETIME és TIMESTAMP típusú mezők " "sorrendje csökkenő, egyéb esetben növekvő" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Alapértelmezett rendezési mód" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Állandó kapcsolatok használata a MySQL adatbázisokhoz" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Állandó kapcsolatok" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4465,23 +4453,23 @@ msgstr "" "Struktúra oldalon jelenik meg, ha a phpMyAdmin konfiguráció tároló táblák " "valamelyike nem található" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Hiányzó phpMyAdmin konfiguráció tároló táblák" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Ikonos táblaműveletek" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "A BLOB vagy a BLOB és BINARY mezők módosításának tiltása" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "A bináris mezők védelme" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4491,123 +4479,123 @@ msgstr "" "szükséges hozzá). Ha letiltja, akkor JS-rutinokat használ fel a lekérdezési " "előzmények megjelenítéséhez (ablak bezárásakor elvész)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Állandó lekérdezési előzmények" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Hány lekérdezés tartandó meg az előzményekben" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "A lekérdezési előzmények hossza" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Új lekérdezési ablak megnyitásakor fül megjelenítése" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Alapértelmezett lekérdezési ablak fül" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Lekérdezési ablak magassága (pixelekben)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Lekérdezés ablak magassága" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Lekérdezés ablak szélessége (pixelekben)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Lekérdezés ablak szélessége" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Válassza ki a karakterkészlet-konvertáláshoz használandó funkciókat" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Átkódoló motor" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Tábla átnevezése" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Megismétli a fejléceket minden X cellánként, a [kbd]0[/kbd] kikapcsolja ezt " "a lehetőséget" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Fejlécek kijavítása" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Mutassa a Segítség gombot a Dokumentáció szöveg helyett" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Segítség gomb mutatása" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "A könyvtár, melybe az exportálások menthetők a szerveren" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Mentési könyvtár" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Hagyja üresen, ha nem használja" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Az állomás hitelesítési sorrendje" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Hagyja üresen az alapértelmezésekhez" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Az állomás hitelesítési szabályai" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "A jelszó nélküli bejelentkezés engedélyezése" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "A root bejelentkezés engedélyezése" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm neve, ami HTTP hitelesítés közben jelenik meg" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4617,19 +4605,19 @@ msgstr "" "fájljának elérési útja (nem a dokumentumgyökérben található; javaslat: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey konfigurációs fájl" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Használandó hitelesítési módszer" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Hitelesítés típusa" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4637,11 +4625,11 @@ msgstr "" "Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/bookmark]könyvjelző" "[/a] támogatás, alapértelmezés: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Könyvjelzők táblája" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4649,32 +4637,32 @@ msgstr "" "Hagyja üresen, ha nincs oszlopmegjegyzés/mime-típus, alapértelmezés: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Oszlopinformációs tábla" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "A MySQL-szerverhez csatlakozás tömörítése" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "A kapcsolat tömörítése" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "A szerverhez csatlakozás módja, hagyja meg a tcp értéket, ha nem biztos benne" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Csatlakozás típusa" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "A kontrollfelhasználó jelszava" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4682,19 +4670,19 @@ msgstr "" "Korlátozott jogokkal rendelkező, speciális MySQL felhasználó, bővebben a " "[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a] címen olvashat róla" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Kontrollfelhasználó" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "A táblák megszámolása az adatbázislista megjelenítésekor" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Táblák megszámolása" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4702,11 +4690,11 @@ msgstr "" "Hagyja üresen, ha nem akar Tervező támogatást, alapértelmezés: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Tervező tábla" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4715,29 +4703,29 @@ msgstr "" "[/a] és a [a@http://bugs.mysql.com/19588]MySQL hibabejelentőben[/a] olvashat " "róla" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Az INFORMATION_SCHEMA használatának letiltása" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Melyik PHP-kiterjesztés használandó, használja a mysqli kiterjesztést, ha " "támogatott" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Használandó PHP-kiterjesztés" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "A (PCRE) reguláris kifejezéssel megegyező adatbázisok elrejtése" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Adatbázisok elrejtése" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4745,43 +4733,43 @@ msgstr "" "Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek " "támogatására, alapértelmezés: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL-lekérdezések előzményeinek táblája" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Az állomás neve, ahol a MySQL-szerver fut" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "A szerver állomásneve" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Kijelentkezési URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "A táblalistában megjelenítendő táblák száma" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "A csatlakozás jelszó nélküli megkísérlése" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Jelszó nélküli csatlakozás" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4795,30 +4783,30 @@ msgstr "" "adatbázislistákat, beírva a nevüket sorrendben és használja a [kbd]*[/kbd]-t " "a végén, hogy a többi abc-sorrendben jelenjen meg." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Csak a kilistázott adatbázisok megjelenítése" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Hagyja üresen, ha nem a konfigurációs hitelesítést használja" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "A konfigurációs hitelesítés jelszava" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF-séma: pages table" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4829,20 +4817,20 @@ msgstr "" "oldalon. Hagyja üresen, ha nincs szükség a támogatására. Alapértelmezés: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Adatbázis neve" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "A port, melyen a MySQL-szerver figyel, hagyja üresen, ha az alapértelmezett" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "A szerver portja" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4854,13 +4842,13 @@ msgstr "" "Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az " "adatbázisban, javaslat: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "A felhasználónév újrahívása" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4868,19 +4856,19 @@ msgstr "" "Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/relation]relációs " "hivatkozás[/a] támogatás, alapértelmezés: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Relációs tábla" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "A meglévő adatbázisokat kiolvasó SQL-parancs" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES parancs" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4888,44 +4876,44 @@ msgstr "" "Lásd a [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]hitelesítési " "típusok[/a] példáját" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Az egyszeri bejelentkezési munkamenet neve" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Az egyszeri bejelentkezés URL-címe" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "A szoftvercsatorna, melyen a MySQL-szerver figyel, hagyja üresen, ha az " "alapértelmezett" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "A szerver szoftvercsatornája" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "SSL engedélyezése a MySQL-szerverhez való csatlakozáshoz" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "SSL használata" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF-séma: table coordinates" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4933,11 +4921,11 @@ msgstr "" "Tábla a megjelenített oszlopok leírásához, hagyja üresen, ha nem kíván " "megadni leírást; javasolt: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Oszlopok tábla megjelenítése" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4949,13 +4937,13 @@ msgstr "" "Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az " "adatbázisban, javaslat: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Tábla töredezettségmentesítése" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4963,11 +4951,11 @@ msgstr "" "DROP DATABASE IF EXISTS utasítás hozzá lesz adva a napló első sora ként az " "adatbázis létrehozása során." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "DROP DATABASE hozzáadása" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4975,11 +4963,11 @@ msgstr "" "DROP TABLE IF EXISTS utasítás hozzá lesz adva a napló első sora ként a tábla " "létrehozása során." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "DROP TABLE hozzáadása" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4987,20 +4975,20 @@ msgstr "" "DROP VIEW IF EXISTS utasítás hozzá lesz adva a napló első sora ként a nézet " "létrehozása során." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "DROP VIEW hozzáadása" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Állítások listájának definiálása az új verziójú automata-létrehozások során." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Utasítások követésre" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -5008,21 +4996,21 @@ msgstr "" "Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek " "támogatására, javasolt: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "SQL-lekérdezések előzményeinek táblája" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Verziók automatikus létrehozása" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -5034,15 +5022,15 @@ msgstr "" "Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az " "adatbázisban, javaslat: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "A konfigurációs hitelesítés felhasználóneve" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -5050,11 +5038,11 @@ msgstr "" "Tiltsa le, ha tudja, hogy a pma_* táblák naprakészek. Ez megelőzi a " "kompatibilitási ellenőrzéseket, s ezáltal növeli a teljesítményt" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Részletes ellenőrzés" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -5062,11 +5050,11 @@ msgstr "" "A szerver felhasználóbarát leírása. Hagyja üresen az állomásnév " "megjelenítéséhez." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "A szerver részletes neve" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -5075,11 +5063,11 @@ msgstr "" "Meg kell-e jeleníteni egy felhasználó számára az "az összes (rekord) " "megjelenítése" gombot" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Az összes sor megjelenítésének engedélyezése" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5089,55 +5077,55 @@ msgstr "" "hitelesítési módra, mert a jelszót a konfigurációs fájl tartalmazza, ami " "közvetlenül nem korlátozza ugyanazon parancs végrehajtásának a lehetőségét." -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "A jelszómódosító űrlap megjelenítése" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Az adatbázis létrehozása űrlap megjelenítése" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "Alapértelmezett megjelenítési irány" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Mező típusok mutatása" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Szerkesztés/beszúrás módban a függvénymezők megjelenítése" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "A függvénymezők megjelenítése" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Rács megjelenítése" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5145,35 +5133,35 @@ msgstr "" "Megjeleníti a [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "kimenetre mutató hivatkozást" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "A phpinfo() hivatkozás megjelenítése" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "A MySQL-szerver részletes adatainak megjelenítése" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Meghatározza, hogy meg kell-e jeleníteni a phpMyAdmin által generált SQL-" "lekérdezéseket" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Az SQL-lekérdezések megjelenítése" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Az adatbázis- és táblastatisztika megjelenítésének engedélyezése (pl. " "területhasználat)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "A statisztika megjelenítése" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5181,11 +5169,11 @@ msgstr "" "Ha engedélyezettek az eszközleírások, s ha megadták az adatbázis " "megjegyzését, akkor ez tükrözi a megjegyzést és a valódi nevet" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Az adatbázis megjegyzésének megjelenítése a neve helyett" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5197,30 +5185,30 @@ msgstr "" "['LeftFrameTableSeparator'] utasítás alapján, ezért csak a mappát hívják " "úgy, mint az aliast, a táblanév változatlan marad." -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "A tábla megjegyzésének megjelenítése a neve helyett" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "A tábla megjegyzéseinek megjelenítése az eszközleírásokban" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "A használt táblák megjelölése, s a zárolt táblákat tartalmazó adatbázisok " "láthatóvá tétele" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "A zárolt táblák kihagyása" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Szükséges az SQL Validator engedélyezése" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5230,17 +5218,17 @@ msgstr "Szükséges az SQL Validator engedélyezése" msgid "Password" msgstr "Jelszó" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "SQL Validator engedélyezése" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5248,12 +5236,12 @@ msgstr "" "Ha Önnek egyedi felhasználóneve van, itt megnevezheti (alapértelmezett: [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Felhasználónév" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5261,59 +5249,59 @@ msgstr "" "Javaslat adatbázisnévre az "Adatbázis létrehozása" űrlapon (ha " "lehet), vagy maradjon üres a szövegmező" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Új adatbázisnév javasolása" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Figyelmeztetés megjelenítése a főoldalon, Suhosin észlelésekor" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin figyelmeztetés" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Szövegterület oszlopai" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Szövegterület sorai" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "A böngésző ablak címe, ha ki van választva egy adatbázis" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "A böngésző ablak címe, ha semmi sincs kiválasztva" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Alapértelmezett cím" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "A böngésző ablak címe, ha ki van választva egy szerver" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "A böngésző ablak címe, ha ki van választva egy tábla" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5325,37 +5313,37 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) fejlécben:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "A megbízható proxyk listája az IP engedélyezéshez/elutasításhoz" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "A szerveren lévő könyvtár, melybe feltöltheti az importálandó fájlokat" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Feltöltések könyvtára" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "A teljes adatbázisban történő keresés engedélyezése" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Adatbázis-kereső használata" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5365,19 +5353,19 @@ msgstr "" "sorainak megjelenítése. Egy utasítás által tartalmazható lekérdezések " "számának alapértelmezéseit lásd libraries/import.lib.php fájlban." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Részletes, több utasítás" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Új verzió ellenőrzése" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5385,7 +5373,7 @@ msgstr "" msgid "Version check" msgstr "Verzió-ellenőrzés" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5393,7 +5381,7 @@ msgstr "" "A [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] tömörítés " "engedélyezése az importálási és az exportálási műveletekhez" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5413,47 +5401,47 @@ msgstr "HTTP hitelesítés" msgid "Signon authentication" msgstr "Signon hitelesítés" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV a LOAD DATA használatával" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document munkafüzet" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Quick" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Egyedi" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Adatbázis exportálási beállításai" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS Excel CSV adat" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document szöveges dokumentum" @@ -5639,9 +5627,8 @@ msgstr "Tábla létrehozása" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Név" @@ -6010,7 +5997,7 @@ msgid "Hide" msgstr "Elrejtés" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Böngésző átalakítása" @@ -6958,7 +6945,7 @@ msgstr "A CSV bevitel %d. sorában a mezők száma érvénytelen." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Tábla neve" @@ -7677,7 +7664,7 @@ msgstr "" msgid "Direction" msgstr "Közvetlen hivatkozások" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Hossz/Érték*" @@ -7984,7 +7971,7 @@ msgstr "Tartalomjegyzék" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Tulajdonságok" @@ -8300,7 +8287,7 @@ msgstr "Üresnek tűnik a tábla!" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8318,7 +8305,7 @@ msgstr "" "(\"'\") akar ezekben az értékekben használni, akkor fordított perjellel " "kezdje (pl.: '\\\\xyz' vagy 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8326,13 +8313,13 @@ msgstr "" "Írjon be egy értéket az alapértelmezett értékekhez, fordított perjel, escape " "karakter vagy idézőjelek nélkül, a következő formátum használatával: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Index" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8341,11 +8328,11 @@ msgstr "" "Az elérhető átalakítási beállítások listájához és a hozzájuk tartozó MIME-" "típusokhoz kattintson ide: %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Átalakítás beállításai" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8357,36 +8344,36 @@ msgstr "" "akar beszúrni az értékekbe, akkor kezdje fordított perjellel (például: '\\" "\\xyz' vagy 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nincs" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Mint meghatározva:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Elsődleges" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Teljes szöveg" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8395,28 +8382,28 @@ msgstr "" "Ehhez az átalakításhoz nem érhető el leírás.
Kérdezze meg a szerzőtől, " "hogy mit csinál a(z) %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s mező hozzáadása" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Legalább egy mezőt meg kell adnia." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Tárolómotor" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "PARTITION definíció" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new server" msgid "+ Add a value" @@ -13483,6 +13470,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd], vagy egy szám, ami megadja a " +#~ "maximum vertikális modellek számát" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Megjelenítés iránya oszlopok szerkesztése/létrehozása esetén" + #~ msgid "Create table on database %s" #~ msgstr "Új tábla létrehozása a(z) %s adatbázisban" diff --git a/po/id.po b/po/id.po index acd4c6b343..5bef32ab71 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-12 09:37+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" @@ -66,7 +66,7 @@ msgstr "Cari" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Komentar Database: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Komentar tabel" @@ -140,7 +140,7 @@ msgstr "Komentar tabel" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Kolom" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Jenis" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Kosong" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Default" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Link ke" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Komentar" @@ -313,14 +313,14 @@ msgstr "Data saja" msgid "CREATE DATABASE before copying" msgstr "CIPTAKAN DATABASE sebelum menyalin" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Menambahkan nilai AUTO_INCREMENT" @@ -335,8 +335,8 @@ msgstr "Pindah ke database yang disalin" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Edit atau ekspor skema relasional" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -666,7 +666,7 @@ msgid "Check tables having overhead" msgstr "Periksa Overheaded" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -732,7 +732,7 @@ msgstr "Kamus Data" msgid "Tracked tables" msgstr "Tabel-tabel yang dilacak" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -807,12 +807,12 @@ msgstr "Lacak tabel" msgid "Database Log" msgstr "Log Database" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Nilai untuk kolom \"% s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Masukkan setiap nilai dalam bidang yang terpisah." @@ -1154,7 +1154,7 @@ msgstr "Reload Hak Istimewa (Privileges)" msgid "Removing Selected Users" msgstr "Hapus pengguna yang dipilih" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Tutup" @@ -1162,7 +1162,7 @@ msgstr "Tutup" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Ubah" @@ -1399,7 +1399,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1628,7 +1628,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1680,7 +1680,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1815,7 +1815,7 @@ msgstr "Menjalankan SQL" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2342,7 +2342,7 @@ msgstr "Indeks belum ditentukan!" msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2380,7 +2380,7 @@ msgstr "" "Index %1$s dan %2$s sepertinya sama dan salah satu dari mereka memungkinkan " "untuk dibuang." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2693,18 +2693,18 @@ msgid "shared" msgstr "dibagi" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabel" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2780,7 +2780,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Hostname tidak sah untuk server %1$s. Silakan lihat kembali konfigurasi Anda." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2852,7 +2852,7 @@ msgstr "MySQL menyatakan: " msgid "Failed to connect to SQL validator!" msgstr "Gagal melakukan koneksi ke validator SQL!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Terangkan SQL" @@ -2864,11 +2864,11 @@ msgstr "Melewati keterangan SQL" msgid "Without PHP Code" msgstr "Kode PHP tidak ditemukan" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Ciptakan kode PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Menyegarkan" @@ -2877,7 +2877,7 @@ msgstr "Menyegarkan" msgid "Skip Validate SQL" msgstr "Melewati pengesahan (validation) SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Mengesahkan (validate) SQL" @@ -2991,20 +2991,20 @@ msgid "Click to toggle" msgstr "Klik untuk memilih" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3205,7 +3205,7 @@ msgid "Set value: %s" msgstr "Tetapkan nilai: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Kembalikan nilai default" @@ -3358,137 +3358,127 @@ msgid "Default display direction" msgstr "Pilihan cara untuk mengekspor Database" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Ubah nama database menjadi" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Pemeliharaan tabel" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Edit baris berikut" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Tampilkan ciri-ciri" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Simpan file dalam format" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Penyusunan karakter dalam file:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Kompresi" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3497,71 +3487,71 @@ msgstr "Kompresi" msgid "Put columns names in the first row" msgstr "Letakkan nama Fields pada baris pertama" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Field ditutup dengan" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Field dikembalikan oleh" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Menggantikan NULL dengan" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Garis diputuskan oleh" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Garis diputuskan oleh" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edisi Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Konvensi nama file" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Konvensi nama file" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Konvensi nama file" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3569,400 +3559,400 @@ msgstr "Konvensi nama file" msgid "Dump table" msgstr "tabel %s" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Masukkan judul halaman tabel" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Judul halaman" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Lanjutan dari judul halaman tabel" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Kunci nama" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Tipe MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Tabel Relasi" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Jenis Ekspor" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Timpahkan (Overwrite) file(s) yang ada" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Konvensi nama file" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Nama tabel dan nama field dalam tanda kutip biasa" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Tanggal Penciptaan/Update/Pemeriksaan" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Gunakan perintah INSERT memperlambat" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Tanpa pemeriksaan kunci asing" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Gunakan perintah INSERT dengan mengabaikan kesalahan" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Ekspor tabel" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Menyertakan ekspor dalam transaksi" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy #| msgid "Export contents" msgid "Export time in UTC" msgstr "Ekspor isi" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "Data CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Menghasilkan" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Impor file" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "Server" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Halaman no.:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "Pencarian SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "Pencarian SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "Pencarian SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Sejarah SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3970,290 +3960,290 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Tabel" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Gunakan text field" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Peringatan" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Ganti data tabel dengan file" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Letakkan nama Fields pada baris pertama" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Batal lacak tabel" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4261,455 +4251,455 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Batas dari sumber" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Urutkan tabel berdasarkan" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Ubah nama tabel menjadi " -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Perbaiki proses" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "Home direktori data" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Koneksi" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Tabel tidak ditemukan" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Defragmentasikan tabel" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Database tidak ditemukan" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "Pilihan Server" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4718,346 +4708,346 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Database" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "ID Server" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analisa tabel" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Perbaiki tabel" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Pilihan Server" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Tampilkan komentar kolom" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentasikan tabel" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Keterangan" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Modus restorasi otomatis" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "Tampilkan tabel" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Tampilkan garis" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Tampilkan pencarian yang lengkap" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Statistik Baris" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5065,28 +5055,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5096,90 +5086,90 @@ msgstr "" msgid "Password" msgstr "Kata Sandi" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Nama Pengguna" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "Tambahkan/Hapus kolom" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Default" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5187,56 +5177,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5244,13 +5234,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5270,49 +5260,49 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Warna kustom" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV untuk data MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5492,9 +5482,8 @@ msgstr "Buat tabel" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nama" @@ -5875,7 +5864,7 @@ msgid "Hide" msgstr "Sembunyikan" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformasi Browser" @@ -6789,7 +6778,7 @@ msgstr "" msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Nama tabel" @@ -7497,7 +7486,7 @@ msgstr "" msgid "Direction" msgstr "Link langsung" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Ukuran Panjang/Nilai*" @@ -7797,7 +7786,7 @@ msgstr "Daftar Isi" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atribut" @@ -8110,7 +8099,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "Pelacakan dari %s.%s diaktifkan" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8128,7 +8117,7 @@ msgstr "" "tanda kutip (\"'\") diperlukan, tanda tersebut perlu ditutupi dengan tanda " "backslash (seb. contoh '\\\\xyz' atau 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8136,13 +8125,13 @@ msgstr "" "Untuk nilai (value) default cukup diisi single value saja tanpa menggunakan " "backslash, escaping atau quotes dan dengan menggunakan format sbb.: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8151,11 +8140,11 @@ msgstr "" "Untuk tampilan daftar tentang pilihan transformasi dan transformasi jenis " "MIME-nya, silakan klik pada %sDeskripsi Transformasi%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Pilihan transformasi" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8167,36 +8156,36 @@ msgstr "" "Quote (\"'\") diperlukan di antara nilai tersebut, mohon gunakan tanda " "Backslash (contoh: '\\\\xyz' atau 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "tanpa" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Seperti yang didefinisikan" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Kunci Utama" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Teks penuh" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8205,28 +8194,28 @@ msgstr "" "Tidak ada deskripsi untuk transformasi ini.
Mohon ditanyakan kepada " "penulis tentang artinya %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Menambahkan %s field(s)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Anda perlu menambahkan sedikitnya satu Field." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Mesin Penyimpan" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Menambahkan pengguna baru" diff --git a/po/it.po b/po/it.po index 47980e8b83..3eb9705389 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-25 15:35+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" @@ -67,7 +67,7 @@ msgstr "Cerca" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -131,7 +131,7 @@ msgid "Database comment: " msgstr "Commento del database: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Commenti alla tabella" @@ -141,7 +141,7 @@ msgstr "Commenti alla tabella" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -157,7 +157,7 @@ msgstr "Campo" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -169,7 +169,7 @@ msgstr "Tipo" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -180,7 +180,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Predefinito" @@ -194,13 +194,13 @@ msgid "Links to" msgstr "Collegamenti a" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Commenti" @@ -314,14 +314,14 @@ msgstr "Solo dati" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prima di copiare" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Aggiungi %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" @@ -336,8 +336,8 @@ msgstr "Passa al database copiato" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -358,7 +358,7 @@ msgid "Edit or export relational schema" msgstr "Modifica o esporta schema relazionale" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -669,7 +669,7 @@ msgid "Check tables having overhead" msgstr "Controllo addizionale" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -731,7 +731,7 @@ msgstr "Dizionario dei dati" msgid "Tracked tables" msgstr "Tabelle monitorate" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -806,12 +806,12 @@ msgstr "Controlla tabella" msgid "Database Log" msgstr "Log database" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Valori per il campo \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Inserisci ogni valore in un campo separato." @@ -1151,7 +1151,7 @@ msgstr "Ricaricamento privilegi" msgid "Removing Selected Users" msgstr "Rimozione Utenti Selezionati" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Chiudi" @@ -1159,7 +1159,7 @@ msgstr "Chiudi" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Modifica" @@ -1397,7 +1397,7 @@ msgstr "Aggiungi almeno una variabile alla serie" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1637,7 +1637,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1690,7 +1690,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1823,7 +1823,7 @@ msgstr "Massimo tempo di esecuzione" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2348,7 +2348,7 @@ msgstr "Nessun indice definito!" msgid "Indexes" msgstr "Indici" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2386,7 +2386,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2696,18 +2696,18 @@ msgid "shared" msgstr "condiviso" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabelle" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2784,7 +2784,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome host per il server %1$s non valido. Controlla la tua configurazione." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2856,7 +2856,7 @@ msgstr "Messaggio di MySQL: " msgid "Failed to connect to SQL validator!" msgstr "Non sono riuscito a connettermi all'SQL Validator!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Spiega SQL" @@ -2868,11 +2868,11 @@ msgstr "Non Spiegare SQL" msgid "Without PHP Code" msgstr "Senza codice PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Crea il codice PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Aggiorna" @@ -2881,7 +2881,7 @@ msgstr "Aggiorna" msgid "Skip Validate SQL" msgstr "Non Validare SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Valida SQL" @@ -2993,20 +2993,20 @@ msgid "Click to toggle" msgstr "Clicca per alternare" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struttura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3207,7 +3207,7 @@ msgid "Set value: %s" msgstr "Imposta valore: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Ripristinare valori predefiniti" @@ -3373,66 +3373,54 @@ msgid "Default display direction" msgstr "Orientamento del display" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]orizzontale[/kbd], [kbd]verticale[/kbd] oppure un numero che indica la " -"massima quantità per cui verrà utilizzata la modalità verticale" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Visualizza la direzione per alterare/creare i campi" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Tabulazione da visualizzare dopo l'ingresso nel database" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Tabulazione predefinita per i database" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Tabulazione da visualizzare dopo l'ingresso nel server" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Tabulazione predefinita per il server" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Tabulazione da visualizzare dopo l'ingresso nella tabbella" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Tabulazione predefinita per le tabbelle" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Mostra sempre contenuti binari come esadecimali" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Mostra contenuti binari come esadecimali" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Mostra i database come una lista invece di un menu a tendina" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Mostra i database come una lista" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Mostra i server in una lista invece di un menu a tendina" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Visualizza i server in una lista" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3440,36 +3428,36 @@ msgstr "" "Disabilita le operazioni di manutenzione delle tabelle, come " "l'optimizzazione o la riparazione delle tabelle selezione nel database." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Disabilita la manutenzione di meltiple tabelle" # ma come si dice "popup"? -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Modifica le query SQL in una finestra separata" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Modifica nella finestra" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Visualizza gli errori" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Accumula gli errori" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Mostra le icone per messaggi di informazone, errore ed avviso" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Errori iconici" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3477,205 +3465,205 @@ msgstr "" "Imposta per quanti secondi uno script puó essere eseguito ([kbd]0[/kbd] - " "nessun limite)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Massimo tempo di esecuzione" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Salva con nome" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Codifica dei caratteri del file" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Compressione" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Metti i nomi dei campi nel primo rigo" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Campi racchiusi da" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Campi prefissati da" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Sostituisci NULL con" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Rimuovi i caratteri CRLF dai campi" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Campi terminati da" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Linee terminate da" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Edizione Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Modello per nomi dei database" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Modello per nomi dei server" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Modello per nomi delle tabbelle" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Dump delle tabelle" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Includi sottotitolo della tabella" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Sottotitolo della tabella" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Sottotitolo della tabella, continuato" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Chiave etichetta" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Tipo MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relazioni" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Metodo di esportazione" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Salva sul server" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Sovrascrivi file(s) esistente/i" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Ricorda il modello per i nomi dei file" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Racchiudi i nomi di tabelle e di campi con virgolette" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Modalità di compatibilità SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "opzioni di CREATE TABLE:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Creazione/Aggiornamento/Controllo dati" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Usa inserimenti ritardati" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Disabilita i controlli sulle chiavi straniere" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Utilizza esadecimale per i BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Usa ignore inserts" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Sintassi da utilizzare nell'inserimento dei dati" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Lunghezza massima di una query creata" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Tipo di esportazione" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Includi esportazione in una transazione" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Esporta l'orario in UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Forza una connessione sicura durante l'utilizzo di phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Forza una connession SSL" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3684,150 +3672,150 @@ msgstr "" "content[/kbd] sono i dati di rifereimento, [kbd]id[/kbd] é il valore della " "chiave" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Ordinamento delle chiavi esterne nel menu a tendina" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Un menu a tendina verrá utilizzato in caso ci siano meno elementi" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Limite di chiavi esterne" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Modalitá di navigazione" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Personalizza modalità di navigazione" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Personalizza le opzioni predefinite" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Sviluppatore" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Impostazioni per i sviluppatori di phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Modalitá di modifica" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Personalizza la modalitá di modifica" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Esporta i predefiniti" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Personalizza le opzioni di esportazione predefinite" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Caratteristiche" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Generale" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Imposta delle opzioni normalmente utilizzate" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Importa i predefiniti" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Personalizza le opzioni di importazione predefinite" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Importa / esporta" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" "Imposta le opzioni di compressione e cartelle per l'esportazione e " "l'importazione" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Opzioni di visualizzazione dei database" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Frame di navigazione" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Personalizza l'aspetto del frame di navigazione" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servers" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Opzioni di visualizzazione dei server" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Opzioni di visualizzazione tabelle" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Frame principale" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Altre opzioni principali" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Altre impostazioni" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Titoli delle pagine" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3837,22 +3825,22 @@ msgstr "" "[a@Documentation.html#cfg_TitleTable]documentazione[/a] per vedere delle " "stringhe che possono essere utilizzate per ottenere dei valori speciali." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Finestra di query" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Personalizza le opzioni della finestra di query" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Sicurezza" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3860,23 +3848,23 @@ msgstr "" "Prego nota che phpMyAdmin é solo un interfaccia e le sue caratteristiche non " "si limitano MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Impostazioni di base" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Autenticazione" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Impostazioni di autenticazione" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Configurazione del server" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3884,15 +3872,15 @@ msgstr "" "Impostazioni avanzate del server, non modificarle a meno che non sai cosa " "fanno" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Inserisci i parametri di connessione al server" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Configurazione di memorizzazione" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3902,11 +3890,11 @@ msgstr "" "alle funzionalitá supplementari, vedi [a@Documentation.html#linked-tables]" "memorizzazione della configurazione di phpMyAdmin[/a] nella documentazione" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Monitoriaggio dei cambiamenti" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3914,44 +3902,44 @@ msgstr "" "Monitoraggio dei cambiamenti effettuati al database. Richiede la " "memorizzazione della configurazione di phpMyAdmin." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Personalizza le opzioni di esportazione" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Personalizza le opzioni predefinite di importazione" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Personalizza frame di navigazione" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Personalizza frame principale" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Query SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Riquadro per query SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Personalizza i collegamenti mostrati nei riquadri per query SQL" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Impostazioni query SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "Validatore SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3964,44 +3952,44 @@ msgstr "" "sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 Upright " "Database Technology. Tutti i diritti riservati.[/ em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Avvio" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Personalizza la pagina di avvio" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Schede" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Scegli come vuoi che le schede lavorino" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Campi di testo" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Personalizza le opzioni dei campi di input" # I think "Texy" is a mistake because on KB "y" is close to "t" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Testo! testo" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Avviso" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Disabilta alcuni avvisi mostrati da phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4009,15 +3997,15 @@ msgstr "" "Abilita compressione [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] per le " "operazioni di importazione ed esportazione" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Parametri aggiuntivi per iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4025,11 +4013,11 @@ msgstr "" "Se abilitato, phpMyAdmin continuerá a processare le query con multiple " "istruzioni anche se una di queste fallisce" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignore errori delle istruzioni multiple" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4040,21 +4028,21 @@ msgstr "" "buon modo di importare grandi file, tuttavia potrebbe interrompere le " "transazioni." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Importazione parziale: consenti interruzione" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Non interrompere su errore durante un operazione di INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Sostituisci i dati della tabella col file" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4062,89 +4050,89 @@ msgstr "" "Formato predefinito; prego nota che questa lista dipende dalla posizione " "(database, tabella) e solo SQL é sempre disponibile" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Formato del file importato" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Usa parola chiave LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "I nomi dei campi sulla prima riga" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Non importare righe vuote" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importa valute ($5.00 a 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importa percentuali come valori decimali (12.00% a .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Numero di query da saltare dall'inizio" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Importazione parziale: ignora query" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non usare AUTO_INCREMENT per il valore zero" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Stato iniziale per i dispositivi di scorrimento" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Il numero di righe che puó essere insertito alla volta" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Il numero di righe inserite" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Destinazione per l'icona di accesso veloce" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Mostra logo nel frame di sinistra" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Visualizza logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" "Visualizza la scelta del server nella parte superiore della frame sinistra" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Visalizza la selezione dei server" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Numero minimo di tabbelle per visualizzare il riquadro di filtraggio" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Stringa che separa i database in livelli dell'albero differenti" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Separatore dell'albero database" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4152,39 +4140,39 @@ msgstr "" "Solo per la versione light; visualizza i database in un albero (determinato " "dal separatore definito in basso)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Visualizza i database in un albero" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Disabilitalo se vuoi vedere tutti i database immediatamente" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Usa versione leggera" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Massima profonditá per l'albero delle tabelle" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "La stringa che separa le tabelle in diversi livelli dell albero" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Separatore dell'albero di tabelle" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "L'indirizzo per il collegamento del logo nella frame di configurazione" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "URL del collegamento per il logo" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4192,48 +4180,48 @@ msgstr "" "Apri la pagina nella finestra principale ([kbd]main[/kbd]) o in una finestra " "nuova ([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Destinazione del collegamento per il logo" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Evidenzia il server sotto il cursore del mouse" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Abilita evidenziamento" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" "Il massimo numero di tabelle recenti da visualizzare; imposta 0 per " "disabilitare" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Tabelle utilizzate recentemente" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Utilizza una tabulazione graficamente meno intensiva" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Tabulazione leggera" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Il massimo numero di caratteri mostrati in qualsiasi campo non-numerico con " "la vista di navigazione" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Limita i caratteri dei campi" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4244,11 +4232,11 @@ msgstr "" "opzione é impostata a FALSE é facile dimenticare di uscire anche dagli altri " "server, quando si é connessi a multipli server." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Elimina tutti i cookie al logout" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4256,11 +4244,11 @@ msgstr "" "Stabilisci se il login precedente deve essere ricordato o no, nel modo di " "autenticazione cookie" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Ricorda nome utente" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4272,55 +4260,55 @@ msgstr "" "solo per la sessione esistente, e verrá rimorro al momento della chiusura " "della finestra del browser. Questo é consigliato per ambienti di sfiducia." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Store del cookie di login" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Stabilisce per quanto tempo (in secondi) un cookie di login é valido" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Validitá per il cookie di login" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Raddoppia l dimensione dell'area di testo per campi LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Un area di testo piú grande per LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Utilizza icone sulla pagina principale" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" "Il massimo numero di caratteri utilizzati per visalizzare una query SQL" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Lunghezza massima per visualizzazione SQL" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Gli utenti non possono impostare un valore maggiore" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Il massimo numero di database da visualizzare nella frame sinistra e la " "lista dei database" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Massimi numero dei database" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4330,19 +4318,19 @@ msgstr "" "risultati contengono ulteriori righe i collegamenti "Precedente" e " ""Seguente" saranno mostrati." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Il massimo numero di righe da visualizzare" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Il massimo numero di tabelle da visualizzare nella lista di tabelle" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Il massimo numero di tabelle" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4350,11 +4338,11 @@ msgstr "" "Disabilitá l'avviso predefinito che viene visualizzato se mcrypt é mancante " "per autenticazione via cookie" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "avviso mcrypt" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4362,11 +4350,11 @@ msgstr "" "Il numero di byte che é consentito di allocare, ad esempio [kbd]32M[/kbd] " "([kbd]0[/kbd] per nessun limite)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Limite memoria" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links" @@ -4374,38 +4362,38 @@ msgstr "" "Questi sono i collegamenti per Modifica, Modifica in Linea, Copia e " "Eliminazione" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Dove mostrare i collegamenti per le righe delle tabelle" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" "Utilizza un ordine naturale per ordinare i nomi delle tabelle e dei database" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Ordine naturale" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Utilizza solo icone, solo testo o entrambi" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Barra di navigazione iconica" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "utilizza il buffer di uscita GZip per una maggiore velocità nei " "trasferimenti via HTTP" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "utilizza il buffer di uscita GZip" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4413,19 +4401,19 @@ msgstr "" "[kbd]SMART[/kbd] - ad esempio ordine decrescente per i campi dei tipi TIME, " "DATE, DATETIME e TIMESTAMP, ordine crescente altrimenti" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Ordinamento predefinito" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Usa connessioni persistenti per i server MySQL" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Connessione persistente" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4435,23 +4423,23 @@ msgstr "" "dettagli della Struttura dei database, se qualche tabella necessaria per la " "memorizzazzione della configurazione di phpMyAdmin non viene trovata" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Mancano le tabbelle di configurazione di phpMyAdmin" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Operazioni iconiche per le tabelle" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Disabilita l'opzione di modifica dei campi BLOB e BINARY" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Proteggi campi binari" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4462,126 +4450,126 @@ msgstr "" "disabilitata, questa utilizzera funzioni JS per visualizzare la cronologia " "delle query (persa alla chiusura della finstra)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Cronologia delle query permanente" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Il numero di query da mantenere nella cronologia" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Lunghezza per la cronologia delle query" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" "La tabulazione da visualizzare quando una nuova finestra di query viene " "aperta" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Scheda predefinita per la finestra query" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Altezza finestra query (in pixels)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Altezza finestra query" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Larghezza finestra query (in pixel)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Larghezza finestra query" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Seleziona le funzioni che saranno usate per la conversione dell'insieme di " "caratteri" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Motore di registrazione" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" "L'ordine delle tabelle é memorizzato durante la navigazione delle tabelle" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Ricorda l'ordine delle tabelle" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Repeti le instestazioni ogni X celle, [kbd]0[/kbd] disattiva questa " "funzionalitá" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Ripeti intestazioni" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Mostra il pulsante della guida invece del testo della Documentazione" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Mostra il pulsante della guida" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "La cartella sul server dove é possibile salvare le esportazioni" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Salva cartella" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Lascia vuoto se non usato" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Ordine dei permessi del host" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Lascia vuoto per i valori predefiniti" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Regole dei permessi del host" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Consenti login senza la parola chiave" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Consenti login per utenti root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "Il nome del Basic Auth Realm da visualizzare durante HTTP Auth" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "Realm HTTP" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4591,19 +4579,19 @@ msgstr "" "autenticazione hardware SweKey[/a] (not salvata nella cartella document " "root; percorso consigliato: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "File di configurazione SweKey" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Metodo di autenticazione da usare" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Tipo di autenticazione" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4611,11 +4599,11 @@ msgstr "" "Lascia vuoto per disattivare il supporto per i [a@http://wiki.phpmyadmin.net/" "pma/bookmark]segnalibri[/a], consigliato: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Tabella dei segnalibri" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4623,31 +4611,31 @@ msgstr "" "Lascia vuoto per diattivare i commenti/tipi mime per i campi, consigliato: " "[kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Tabella delle informazioni sui campi" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Comprimi la connessione al server MySQL" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Comprimi la connessione" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Come connettersi al server, lascia [kbd]tcp[/kbd] se non sei sicuro" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Tipo di connessione" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Parola chiave per l'utente di controllo" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4656,19 +4644,19 @@ msgstr "" "ulteriori informazioni disponibili nella [a@http://wiki.phpmyadmin.net/pma/" "controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Utente di controllo" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Conta le tabelle quando la lista dei database viene mostrata" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Conta tabelle" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4676,11 +4664,11 @@ msgstr "" "Lascia vuoto disattivare il supporto per Designer, consigliato: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Tabbella di design assistito" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4688,29 +4676,29 @@ msgstr "" "Maggiori informazioni su [a@http://sf.net/support/tracker.php?aid=1849494]" "PMA bug tracker[/a] e [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Disabilita l'utilizzo di INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Il tipo di estensione PHP da utilizzare; dovresti utilizzare mysqli, se " "questo é supportato" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Estensioni PHP da utilizzare" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Nascondi i database corrispondenti all'espressione regolare (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Nascondi i database" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4718,43 +4706,43 @@ msgstr "" "Lascia vuoto per disabilitare il supporto per la cronologia delle query SQL, " "consigliato: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Tabella di cronologia delle query SQL" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Il nome host dove is server MySQL é in esecuzione" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Nome host del server" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Url di logout" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Il massimo numero di tabelle da visualizzare nella lista di tabelle" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Prova ad effettuare la connessione senza una parola chiave" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Effettua connessione senza la parola chiave" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4769,30 +4757,30 @@ msgstr "" "utilizzare [kbd]*[/ kbd] alla fine per mostrare il resto in ordine " "alfabetico." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Mostra solo i database dalla lista" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Lascia vuoto su il config auth non é utilizzato" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Parola chiave per config auth" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Lascia vuoto disabilitare il supporto per i schemi PDF, consigliato: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "Schema PDF: tabella delle pagine" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4802,20 +4790,20 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] per tutti dettagli. Lascia " "vuoto per disabilitarne il supporto. Consigliato: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Nome del database" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "La dove il server MySQL ascolta, lascia vuoto per il valore predefinito" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Porta del server" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4823,11 +4811,11 @@ msgstr "" "Lascia vuoto per disabilitare la memorizzazione delle tabelle recenti nel " "database, consigliato: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Tabella utilizzata recentemente" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4835,19 +4823,19 @@ msgstr "" "Lascia vuoto per disabilitare il supporto per [a@http://wiki.phpmyadmin.net/" "pma/relation]relation-links[/a], consigliato: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Tabella relazionale" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "Commando SQL per ritrovare i database disponibili" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "Commando SHOW DATABASES" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4855,44 +4843,44 @@ msgstr "" "Vedi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipi di " "autenticazione[/a] per un esempio" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Nome della sessione di signon" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "L'URL di signon" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Il socket sul quale il server MySQL ascolta, lascia vuoto per il valore " "predefinito" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Socket del server" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Abilita SSL per la connessione al server MySQL" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Utilizza SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Lascia vuoto per disabilita il supporto dello schema PDF, consigliato: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "Schema PDF: coordinate delle tabelle" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4900,11 +4888,11 @@ msgstr "" "La tabella che descrive i campi di visualizzazione, lascia vuoto per " "disabilitarne il supporto; consigliato: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Visualizza i campi della tabella" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4913,11 +4901,11 @@ msgstr "" "dell'interfaccia utenti nel database, consigliato: [kbd]pma_table_uiprefs[/" "kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Tabella di memorizzazione delle preferenze dell'interfaccia utente" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4925,11 +4913,11 @@ msgstr "" "Se aggiungere un instruzione DROP DATABASE IF EXISTS sulla prima linea del " "log quando viene creato un database." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Aggiungi DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4937,11 +4925,11 @@ msgstr "" "Se aggiungere un instruzione DROP TABLE IF EXISTS sulla prima linea del log " "quando viene creato una tabella." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Aggiungi DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4949,21 +4937,21 @@ msgstr "" "Se aggiungere un instruzione DROP VIEW IF EXISTS sulla prima linea del log " "quando viene creata una vista." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Aggiungi DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Definisce la lista delle istruzioni the l'auto-creazione utilizza per le " "nuove versioni." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Istruzioni da monitorare" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4971,11 +4959,11 @@ msgstr "" "Lascia vuoto per disabilitare il supporto per il monitoriaggio delle query " "SQL, consigliato: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Tabella de monitoraggio delle query SQL" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4983,11 +4971,11 @@ msgstr "" "Se il meccanismo di monitoraggio crea versioni per tabelle e viste " "automaticamente." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Crea versioni automaticamente" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4999,15 +4987,15 @@ msgstr "" "Lascia vuoto per disabilitare la memorizzazione delle preferenze degli " "utenti nel database, consigliato: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Tabella di memorizzazione delle preferenze degli utenti" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Utente per il config auth" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -5015,11 +5003,11 @@ msgstr "" "Disabilita se sai che le tua tabelle pma_* sono aggiornate. Questo previene " "dei controlli di compatibilitá e cosí aumente le prestazioni" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Controllo dettagliato" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -5027,20 +5015,20 @@ msgstr "" "Una descrizione di facile utilizzo di questo server. Lascia vuoto per " "visualizzare il nome host, invece." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Nome completo di questo server" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Se visualizzare all'utente un pulsante "mostra tutte le (righe)"" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Consenti la visualizzazione di tutte le righe" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5051,15 +5039,15 @@ msgstr "" "di configurazione; questo non limita la capacità di eseguire lo stesso " "comando direttamente" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Mostra il modulo di modifica della parola chiave" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Mostra il modulo di creazione dei database" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" @@ -5067,11 +5055,11 @@ msgstr "" "Definisce se mostrare l'opzione della direzione di visualizzazione durante " "la navigazione delle tabelle" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Mostra l'orientamento del display" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -5079,32 +5067,32 @@ msgstr "" "Stabilisce se i tipi dei campi dovrebbero essere visualizzati inizialmente " "nella modalitá di inserimento/modifica" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Mostra i tipi di campi" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" "Visualizza i campi delle funzioni nelle modalita di inserimento/modifica" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Mostra i campi delle funzioni" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 #, fuzzy #| msgid "Where to show the table row links" msgid "Whether to show hint or not" msgstr "Dove mostrare i collegamenti per le righe delle tabelle" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show indexes" msgid "Show hint" msgstr "Mostra gli indici" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5112,35 +5100,35 @@ msgstr "" "Mostra un collegamento all'output di [a@http://php.net/manual/function." "phpinfo.php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Mostra un collegamento a phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Mostra informazioni dettagliate del server MySQL" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Definisce se le query SQL generate da phpMyAdmin devrebbero essere " "visualizzate" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Mostra query SQL" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Consenti la visualizzazione delle statistiche dei database e tabelle (ad " "esempio spazio utilizzato)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Mostra statistiche" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5148,11 +5136,11 @@ msgstr "" "Se i tooltip sono abilitati e un commento del database è impostato, questo " "scambierá il commento ed il vero nome" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Visualizza i commenti dei database, invece dei nomi corrispondenti" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5165,30 +5153,30 @@ msgstr "" "cartella é chiamata come l'alias, ma il nome della tabella stessa rimane " "invariato" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Visualizza i commenti delle tabelle, invece dei nomi corrispondenti" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Visualizza i commenti delle tabelle nei tooltip" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Segna le tabelle come utilizzate e quindi consenti la visualizzazione dei " "database con delle tabelle bloccate" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Ignora le tabelle bloccate" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Richiede l'abilitazione del validatore SQL" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5198,7 +5186,7 @@ msgstr "Richiede l'abilitazione del validatore SQL" msgid "Password" msgstr "Password" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5206,11 +5194,11 @@ msgstr "" "[strong]Avviso:[/strong] richiede l'estensione SOAP di PHP o l'installazione " "di PEAR SOAP" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Abilita il validatore SQL" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5218,12 +5206,12 @@ msgstr "" "Se hai un nome utente personalizzato, specificalo qui (il predefinito é [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Nome utente" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5231,19 +5219,19 @@ msgstr "" "Suggerisci un nome di database nel modulo \"Crea database\" (se possibile) o " "lascia il campo di testo vuoto" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Suggerisci un nuovo nome per il database" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Mostra un avviso sulla pagina principale se Suhosin é stato trovato" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Avviso Suhosin" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5252,11 +5240,11 @@ msgstr "" "valore incrementato per le aree di testo delle query SQL (x2) e per la " "finestra di query (x1.25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Campi di aree di testo" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5265,31 +5253,31 @@ msgstr "" "valore incrementato per le aree di testo delle query SQL (x2) e per la " "finestra di query (x1.25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Righe con aree di testo" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Totolo della finestra del browser quando un database é selezionato" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Totolo della finestra del browser quando nessun oggetto é selezionato" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Titolo Predefinito" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Totolo della finestra del browser quando un server é selezionato" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Totolo della finestra del browser quando una tebella é selezionata" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5301,28 +5289,28 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente dalla proxy 1.2.3.4[br]" "[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Lista dei proxy di fiducia per filtarre gli IP, accetta/rifiuta" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" "La cartella sul server dove é possibile caricare i file per l'importazione" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Cartella dei upload" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Consenti la ricerca all'interno di un intero database" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Utilizza la ricerca dei datatbase" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5330,11 +5318,11 @@ msgstr "" "Quando disabilitato, gli utenti non possono impostare alcune opzioni " "sottostanti, indipendentemente dalla casella di controllo sulla destra" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Abilita la tabulazione per i Sviluppatori nelle impostazioni" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5344,21 +5332,21 @@ msgstr "" "istruzioni. Vedi libraries/import.lib.php per i valori predefiniti di quante " "instruzioni possono essere contenute in una query." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Instruzioni multiple verbose" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Controlla l'ultima versione" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Abilita la prova per la versione piú recente sulla pagina principale di " "phpMyAdmin" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5366,7 +5354,7 @@ msgstr "" msgid "Version check" msgstr "Controllo versione" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5374,7 +5362,7 @@ msgstr "" "Abilita la compressione [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP" "[/a] per le operazioni di importazione ed esportazione" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5394,47 +5382,47 @@ msgstr "Autenticazione HTTP" msgid "Signon authentication" msgstr "Autenticazione via signon" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Foglio di calcolo nel formato Open Document" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Veloce" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Personalizzazato" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opzioni di esportazione per database" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV per dati MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Testo nel formato Open Document" @@ -5618,9 +5606,8 @@ msgstr "Crea tabelle" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nome" @@ -5967,7 +5954,7 @@ msgid "Hide" msgstr "Nascondi" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Trasformazione del browser" @@ -6926,7 +6913,7 @@ msgstr "Il numero dei campi non é valido nell'input CSV alla linea %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Nome tabella" @@ -7622,7 +7609,7 @@ msgstr "Parametri" msgid "Direction" msgstr "Direzione" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Lunghezza/Valori" @@ -7887,7 +7874,7 @@ msgstr "Tabella dei contenuti" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Attributi" @@ -8185,7 +8172,7 @@ msgstr "La tabella sembra essere vuota!" msgid "Tracking of %s.%s is activated." msgstr "Monitoraggio di %s.%s é attivo." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8197,7 +8184,7 @@ msgstr "" "(\"\\\") o una virgolette singola quote (\"'\") prefissa a questi caratteri " "con un \"\\\" (per esempio '\\\\xyz' o 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8205,13 +8192,13 @@ msgstr "" "Per i valori predefiniti, prego inserire un singolo valore, senza backslash " "escaping o virgolette, utilizzando questo formato: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indice" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8220,11 +8207,11 @@ msgstr "" "Per una lista di opzioni di trasformazione disponibili e le loro rispettive " "trasformazioni di tipi-MIME, cliccate su %strasformazione descrizioni%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opzioni di transformazione" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8236,34 +8223,34 @@ msgstr "" "backslash (\"\\\") o un apostrofo (\"'\") tra questi valori, essi vanno " "backslashati (ad esempio '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "Dati in ENUM o SET troppo lunghi?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Piú spazio per la modifica" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Nessuno" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Come definito:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primaria" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Testo completo" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8272,25 +8259,25 @@ msgstr "" "Nessuna descrizione è disponibile per questa trasformazione.
Prego, " "chiedere all'autore cosa %s faccia." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Aggiungi %s campo/i" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Devi aggiungere almeno un campo." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Motore di Memorizzazione" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Definizione PARTITION" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Aggiungi un valore" @@ -13185,6 +13172,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]orizzontale[/kbd], [kbd]verticale[/kbd] oppure un numero che indica " +#~ "la massima quantità per cui verrà utilizzata la modalità verticale" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Visualizza la direzione per alterare/creare i campi" + #~ msgid "Create table on database %s" #~ msgstr "Crea una nuova tabella nel database %s" diff --git a/po/ja.po b/po/ja.po index 1a82c9984c..e9fedfe095 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-28 12:29+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" @@ -66,7 +66,7 @@ msgstr "検索" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "データベースのコメント" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "テーブルのコメント" @@ -140,7 +140,7 @@ msgstr "テーブルのコメント" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "カラム" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "種別" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "NULL" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "デフォルト値" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "リンク先" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "コメント" @@ -313,14 +313,14 @@ msgstr "データのみ" msgid "CREATE DATABASE before copying" msgstr "コピーの前に CREATE DATABASE する" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "%s を追加" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" @@ -335,8 +335,8 @@ msgstr "コピーしたデータベースに切り替える" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "リレーショナルスキーマを編集またはエクスポートする" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -662,7 +662,7 @@ msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認する" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -724,7 +724,7 @@ msgstr "データ辞書" msgid "Tracked tables" msgstr "SQL コマンドを追跡しているテーブル" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -799,12 +799,12 @@ msgstr "テーブルを追跡する" msgid "Database Log" msgstr "データベースのログです" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "カラム \"%s\" に対しての値" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "個々の入力欄にそれぞれ値を入力してください。" @@ -1135,7 +1135,7 @@ msgstr "特権を再読み込み" msgid "Removing Selected Users" msgstr "選択したユーザを削除する" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "閉じる" @@ -1143,7 +1143,7 @@ msgstr "閉じる" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "編集" @@ -1358,7 +1358,7 @@ msgstr "少なくとも1つの系列を追加してください" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1583,7 +1583,7 @@ msgstr "" "インポートした設定でのグラフの配置に失敗しました。設定をデフォルトに戻しま" "す..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1628,7 +1628,7 @@ msgstr "特定の値に対する変数値の割合" msgid "Test" msgstr "判断基準" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1759,7 +1759,7 @@ msgstr "最大実行時間" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2283,7 +2283,7 @@ msgstr "インデックスが定義されていません!" msgid "Indexes" msgstr "インデックス" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2321,7 +2321,7 @@ msgstr "" "インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし" "れません。" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2621,18 +2621,18 @@ msgid "shared" msgstr "共有" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "テーブル" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2708,7 +2708,7 @@ msgstr "サーバのインデックスが不正です: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2780,7 +2780,7 @@ msgstr "MySQLのメッセージ: " msgid "Failed to connect to SQL validator!" msgstr "SQL 検証への接続に失敗しました!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "EXPLAIN で確認" @@ -2792,11 +2792,11 @@ msgstr "SQL の EXPLAIN 解析をスキップ" msgid "Without PHP Code" msgstr "PHP コードを省略" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP コードの作成" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "再描画" @@ -2805,7 +2805,7 @@ msgstr "再描画" msgid "Skip Validate SQL" msgstr "SQL の検証をスキップ" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL の検証" @@ -2909,20 +2909,20 @@ msgid "Click to toggle" msgstr "クリックでオン/オフ切り替え" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "構造" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3121,7 +3121,7 @@ msgid "Set value: %s" msgstr "値「%s」を設定" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "デフォルト値に戻す" @@ -3284,66 +3284,54 @@ msgid "Default display direction" msgstr "デフォルトの表示方向" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd](水平)、[kbd]vertical[/kbd](垂直)、数字のいずれか。" -"数字は、垂直モデルが適用される最大のカラム数。" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "カラムの編集/作成における表示方向" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "データベースが選択されたときに表示されるタブ。" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "デフォルトのデータベースタブ" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "サーバが選択されたときに表示されるタブ。" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "デフォルトのサーバタブ" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "テーブルが選択されたときに表示されるタブ。" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "デフォルトのテーブルタブ" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "デフォルトではバイナリの内容を 16 進数で表示します。" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "バイナリの内容を 16 進数で表示する" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "データベースの一覧をドロップダウンの代わりにリストで表示します。" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "データベースをリストで表示する" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "サーバの一覧をドロップダウンの代わりにリストで表示します" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "サーバをリストで表示する" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3351,241 +3339,241 @@ msgstr "" "データベースで選択したテーブルを最適化や修復するというような、大量操作する" "テーブルメンテナンスを無効にします。" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "複数のテーブルに対してのメンテナンスを無効にする" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "ポップアップウィンドウで SQL クエリを編集します。" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "ウィンドウでの編集" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "エラーを表示する" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "エラーを収集する" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "警告、エラー、メッセージに対してアイコンを表示します。" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "エラー等のアイコン化" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" "スクリプトの実行が許されている秒数を設定します。([kbd]0[/kbd] で制限なし)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "最大実行時間" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "ファイルに保存する" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "ファイルの文字セット" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "フォーマット" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "圧縮" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "1 行目にカラム名を追加する" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "カラム囲み記号" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "カラムのエスケープ記号" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "NULL の代替文字列" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "カラムに含まれている CRLF 文字を取り除く" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "カラムの終端記号" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "行の終端記号" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel のエディション" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "データベース名のテンプレート" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "サーバ名のテンプレート" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "テーブル名のテンプレート" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "ダンプするテーブル" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "テーブルのキャプションを含める" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "テーブルのキャプション" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "テーブルのキャプション(続き)" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "ラベルキー" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME タイプ" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "リレーション" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "エクスポート方法" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "サーバ上に保存する" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "既存のファイルは上書き" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "ファイル名のテンプレートを記憶しておく" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "テーブル名やカラム名を逆クォートで囲む" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL 互換モード" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "CREATE TABLE オプション:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "作成/更新/検査日" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "遅延インサートを使用する" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "外部キーのチェックを無効にする" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "BLOB に 16 進数表記を利用する" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "INSERT IGNORE を使用する" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "データを挿入するときに使う構文" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "作成するクエリの最大長" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "エクスポート形式" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "エクスポートをトランザクションで囲む" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "エクスポート時間を UTC(協定世界時)にする" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" "phpMyAdmin を使用している間、強制的にセキュリティで保護された接続をします。" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "SSL 接続の推奨" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3593,149 +3581,149 @@ msgstr "" "外部キーのドロップダウンボックス内のソート順。[kbd]content[/kbd] は参照してい" "るデータ、[kbd]id[/kbd] はキー値を表しています。" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "外部キーのドロップダウンの順番" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "これより少ない項目数であれば、ドロップダウンが使用されます。" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "外部キー制限" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "表示モード" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "表示モードの詳細設定" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "デフォルトオプションの詳細設定" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "開発者向け" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "phpMyAdmin 開発者用の設定" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "編集モード" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "編集モードの詳細設定" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "エクスポートのデフォルト" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "デフォルトのエクスポートオプションの詳細設定" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "機能" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "一般" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "共通に使われるオプションをセットする" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "インポートのデフォルト" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "デフォルトの共通インポートオプションの詳細設定" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "インポート/エクスポート" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" "インポートとエクスポートのディレクトリおよび圧縮オプションを設定してください" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "データベースの表示オプション" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "ナビゲーションフレーム" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "ナビゲーションフレームの概観の詳細設定" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "サーバ" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "サーバの表示オプション" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "テーブルの表示オプション" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "メインフレーム" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "他の中心的な設定" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "どこにも該当しない設定" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "ページタイトル" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3744,22 +3732,22 @@ msgstr "" "ブラウザのタイトルバーのテキストの指定を行います。使用可能な特別な埋め込み変" "数は[a@Documentation.html#cfg_TitleTable]ドキュメント[/a]を参照してください。" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "クエリウィンドウ" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "クエリウィンドウオプションの詳細設定" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "セキュリティ" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3767,23 +3755,23 @@ msgstr "" "phpMyAdmin は、ユーザインタフェースだけであり、その機能は MySQL を制限するも" "のではないことをご了承ください。" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "基本設定" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "認証" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "認証設定" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "サーバ設定" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3791,15 +3779,15 @@ msgstr "" "高度なサーバ設定。これらのオプションは、よく知らないのであれば変更しないでく" "ださい。" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "サーバの接続パラメータを入力してください" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "設定の保存場所" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3809,11 +3797,11 @@ msgstr "" "い。ドキュメントの[a@Documentation.html#linked-tables]phpMyAdmin 設定保存場所" "[/a]参照。" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "変更追跡機能" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3821,44 +3809,44 @@ msgstr "" "データベースで行われた変更の追跡機能です。これには、phpMyAdmin の設定保存場所" "が必要です。" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "エクスポートオプションの詳細設定" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "インポートデフォルトの詳細設定" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "ナビゲーションフレームの詳細設定" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "メインフレームの詳細設定" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL クエリ" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL クエリボックス" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "SQL クエリボックスに表示されるリンクの詳細設定" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL クエリの設定" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL 文の検証" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3870,43 +3858,43 @@ msgstr "" "sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 Upright " "Database Technology. All rights reserved.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "スタートアップ" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "スタートアップページの詳細設定" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "タブ" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "アクションがあったときに動作するタブを選択します。" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "テキストフィールド" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "テキスト入力フィールドの詳細設定" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! テキスト" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "警告" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "phpMyAdmin で表示される警告の抑制" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3914,15 +3902,15 @@ msgstr "" "インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/" "Gzip]gzip[/a] 圧縮を有効にします。" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "iconv のための追加パラメータ" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3930,11 +3918,11 @@ msgstr "" "有効にした場合、クエリの 1 つが失敗しても phpMyAdmin はマルチクエリの実行を続" "けます。" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "マルチクエリのエラーを無視する" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3944,21 +3932,21 @@ msgstr "" "大きなファイルをインポートする場合には便利ですが、トランザクションが壊れるこ" "ともあります。" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "部分インポート(割り込みの許可)" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "INSERT エラーで中断しない" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "テーブルデータを差し替えるファイル" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3966,127 +3954,127 @@ msgstr "" "デフォルトの形式。このリストは対象(データベース、テーブル)に依存しているの" "で注意してください。SQL は常に利用可能です。" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "インポートするファイルの形式" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "LOCAL キーワードを使用する" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "1 行目にカラム名を追加する" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "空の行はインポートしない" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "金額は単位を取り除く(例:$5.00 を 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "パーセントは適切な小数に変換する(例:12.00% を .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "先頭から数えたスキップするクエリの数" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "部分インポート(クエリのスキップ)" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "折り畳みに対しての初期値" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "1 回で何行まとめて挿入できるか。" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "挿入する行数" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "クイックアクセスアイコンのリンク先" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "左のフレーム内にロゴを表示します。" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "ロゴを表示する" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "左フレームの上部にサーバ選択を表示します" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "サーバ選択を表示する" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "テーブルフィルタボックスを表示する最小のテーブル数" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "ツリーレベルにデータベースを区切るための文字列" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "データベースツリーの区切り" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" "軽快モードのみ。下の項目で定義する区切りが合った場合、ツリー表示になります。" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "データベースをツリー形式で表示する" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "全てのデータベースを同時に閲覧したい場合は、これを無効にします。" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "軽快モードを使用する" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "テーブルツリーの最大の深さ" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "ツリーレベルにテーブルを区切るための文字列" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "テーブルツリーの区切り" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "ナビゲーションフレームのロゴが指す URL" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "ロゴのリンク URL" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4094,44 +4082,44 @@ msgstr "" "メインウィンドウ ([kbd]main[/kbd]) もしくは新しいウィンドウ ([kbd]new[/kbd]) " "にリンクされたページを開きます。" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "ロゴリンクのターゲット" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "マウスカーソルの下のサーバ名を強調表示します。" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "強調表示を有効" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "最近使用したテーブルの最大数。0 で無効になります。" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "最近使用したテーブル" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "派手なグラフィックでないタブを使用します。" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "軽めのタブ" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "表示ページにおいて数値でないカラムの表示文字の最大数。" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "カラムの文字制限" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4142,11 +4130,11 @@ msgstr "" "を外しておくと、複数のサーバに接続している時、他のサーバからのログアウト作業" "を忘れやすくなります。" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "ログアウト時に全てのクッキーを削除する" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4154,11 +4142,11 @@ msgstr "" "cookie 認証モードの場合に、前回ログインしたときの状態に戻すかどうかを定義しま" "す。" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "ログインしたときの状態に戻す" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4170,52 +4158,52 @@ msgstr "" "のウィンドウが閉じられるとすぐに削除されます。これは、信頼されていない環境で" "使う場合に推奨します。" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "ログインクッキーの保存期間" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "ログインクッキーの有効期間(秒)を定義します。" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "ログインクッキーの有効期間" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "LONGTEXT カラムに対して textarea を 2 倍にします。" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEXT に対しては大きな textarea を使う" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "メインページ上でアイコンを使用する" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "SQL クエリが表示されているときに使用される文字の最大数" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "表示できる SQL 文の最大の長さ" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "ユーザはこれより高い値を設定することはできません。" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "左のフレームとデータベースリストに表示されるデータベースの最大数" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "データベースの最大数" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4224,19 +4212,19 @@ msgstr "" "結果セットの表示行数。結果セットの行数の方が多い場合は「前へ/次へ」のリンク" "が表示されます。" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "行の最大表示数" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "テーブルのリストに表示されるテーブルの最大数" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "テーブルの最大数" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4244,11 +4232,11 @@ msgstr "" "cookie 認証で mcrypt 拡張がなかった場合、警告を表示します。チェックを入れると" "このメッセージは表示されません。" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt 警告" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4256,43 +4244,43 @@ msgstr "" "割り当てが許可されているスクリプトのバイト数。例:[kbd]32M[/kbd] ([kbd]0[/" "kbd] で制限無し)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "メモリ制限" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "編集、コピー、削除のリンクことです。" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "テーブルの行リンクを表示する場所" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "テーブルやデータベースの名前のソートを人間が行うような手法で行います。" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "自然順" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "「アイコンのみ」、「テキストのみ」、「両方」のいずれかが使えます。" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "ナビゲーションバーのアイコン" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "HTTP 転送の高速化のために GZip の出力バッファリングを使用します。" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip の出力バッファリング" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4300,19 +4288,19 @@ msgstr "" "[kbd]SMART[/kbd] とは TIME、DATE、DATETIME、TIMESTAMP 型のカラムに対しては " "DESC、それ以外はASCの並び順にします。" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "デフォルトの並び順" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL データベースへの永続的な接続を使用します。" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "永続的な接続" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4321,23 +4309,23 @@ msgstr "" "phpMyAdmin の設定保存に必要なテーブルを見つけることができなかった場合、データ" "ベースの構造詳細ページに表示されるデフォルトの警告を無効にします。" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin の設定保存用テーブルが不明" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "アイコンによるテーブルの操作" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB および BINARY カラムへの編集を禁止します。" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "バイナリカラムの保護" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4347,121 +4335,121 @@ msgstr "" "の設定保存場所の設定が必要です)。無効にした場合、クエリ履歴の表示に " "JavaScript を利用します(ウィンドウを閉じると履歴は消えます)。" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "永続的なクエリの履歴" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "履歴に残るクエリの件数。" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "クエリ履歴の長さ" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "新しいクエリウィンドウを開いたときに開いておくタブ。" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "クエリウィンドウのデフォルトタブ" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "クエリウィンドウの高さ(ピクセルで指定)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "クエリウィンドウの高さ" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "クエリウィンドウの幅(ピクセルで指定)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "クエリウィンドウの幅" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "文字セットの変換に使用される関数を選択します。" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "コード変換エンジン" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "表示している各テーブルのソートが記憶されます。" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "テーブルのソートを記憶する" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "カラム名ヘッダを何行に置きに挿入するか。[kbd]0[/kbd] でこの機能は無効になりま" "す。" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "カラム名ヘッダの繰り返し" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "ドキュメントテキストの代わりにヘルプボタンを表示します。" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "ヘルプボタンの表示" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "修正したセルを一度に全て保存する" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "エクスポートをサーバ上に保存できるディレクトリ" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "保存ディレクトリ" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "使用しない場合は空欄にします。" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "ホストの認証順番" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "デフォルトにする場合は空欄にします。" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "ホスト認証のルール" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "パスワードなしログインの許可" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "root ログインの許可" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP 認証を行うときに表示される HTTP 基本認証領域名" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP 領域" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4470,19 +4458,19 @@ msgstr "" "[a@http://swekey.com]SweKey ハードウェア認証[/a]用の設定ファイルのパス (ド" "キュメントルートには配置しないこと。/etc/swekey.conf がいいでしょう。)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey 設定ファイル" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "使用する認証方法" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "認証タイプ" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4490,11 +4478,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]ブックマーク[/a]機能を使わない場合" "は空欄にします。[kbd]pma_bookmark[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "ブックマークテーブル" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4502,31 +4490,31 @@ msgstr "" "カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。[kbd]" "pma_column_info[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "カラム情報テーブル" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "MySQL サーバと圧縮プロトコルで接続します。" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "圧縮通信を行う" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "サーバへの接続方法。確信がなければ [kbd]tcp[/kbd] のままにします。" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "接続方法" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "phpMyAdmin ユーザのパスワード" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4534,19 +4522,19 @@ msgstr "" "権限を制限して設定しておいた特別な MySQL ユーザを使います。詳細は [a@http://" "wiki.phpmyadmin.net/pma/controluser]wiki[/a] を参照してください。" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "phpMyAdmin ユーザ" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "データベースリストを表示するときにテーブル数も表示するかどうか。" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "テーブル数" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4554,11 +4542,11 @@ msgstr "" "デザイナを使わない場合は空欄にします。[kbd]pma_designer_coords[/kbd] としてお" "くのがいいでしょう。" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "デザイナテーブル" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4566,27 +4554,27 @@ msgstr "" "詳細は [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] " "と [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]。" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA の使用を無効にする" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "mysqli がサポートされているなら、そちらを使うべきでしょう。" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "使用する PHP 拡張" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "正規表現 (PCRE) で一致するデータベースを非表示にします" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "非表示にするデータベース" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4594,41 +4582,41 @@ msgstr "" "SQL クエリの履歴機能を使わない場合は空欄にします。[kbd]pma_history[/kbd] とし" "ておくのがいいでしょう。" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL クエリ履歴テーブル" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "稼働している MySQL サーバのホスト名" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "サーバのホスト名" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "ログアウト URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "「table_uiprefs」テーブルに保存できる最大行数。" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "パスワード無しでの接続を試みます" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "パスワード無しで接続する" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4644,30 +4632,30 @@ msgstr "" "入力しておきます。[kbd]'*'[/kbd] は残ったものをアルファベット順に並べて表示す" "る働きをします。" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "リスト化したデータベースだけを表示する" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "config 認証を使用しない場合は空欄のままにします。" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "config 認証用のパスワード" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "PDF スキーマを使用しない場合は空欄のままにします。[kbd]pma_pdf_pages[/kbd] と" "しておくのがいいでしょう。" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF スキーマ:ページテーブル" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4678,20 +4666,20 @@ msgstr "" "れらの機能を使わない場合は空欄にします。[kbd]phpmyadmin[/kbd] としておくのが" "いいでしょう。" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "データベース名" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "MySQL サーバで開いているポート。デフォルトにしたい場合は空欄のままにします。" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "サーバのポート" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4699,11 +4687,11 @@ msgstr "" "最近使用したテーブルをセッションを跨いで「永続的に」記憶しない場合は空欄にし" "ます。[kbd]pma_recent[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "最近使用したテーブル" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4711,19 +4699,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]リレーションリンク[/a]機能を使わな" "い場合は空欄にします。[kbd]pma_relation[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "リレーションテーブル" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "使用可能なデータベースを取得するための SQL コマンド" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES コマンド" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4731,44 +4719,44 @@ msgstr "" "設定例は[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認証モード[/a]を" "参照してください。" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "サインオンセッション名" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "サインオン URL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "MySQL サーバで開いているソケット。デフォルトにしたい場合は空欄のままにしま" "す。" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "サーバのソケット" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "MySQL サーバへの接続において SSL を有効にします。" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "SSL の使用" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "PDF スキーマを使用しない場合は空欄にします。[kbd]pma_table_coords[/kbd] とし" "ておくのがいいでしょう。" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF スキーマ:テーブルの座標" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4776,11 +4764,11 @@ msgstr "" "表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。[kbd]" "pma_table_info[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "表示するカラムためのテーブル" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4788,11 +4776,11 @@ msgstr "" "ユーザ設定をセッションを跨いで「永続的に」記憶しない場合は空欄にします。[kbd]" "pma_table_uiprefs[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "ユーザ設定保存テーブル" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4800,11 +4788,11 @@ msgstr "" "データベースを作成するときにログの最初の行に DROP DATABASE IF EXISTS 文を追加" "するかどうか。" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "DROP DATABASE を追加" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4812,11 +4800,11 @@ msgstr "" "テーブルを作成するときにログの最初の行に DROP TABLE IF EXISTS 文を追加するか" "どうか。" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "DROP TABLE を追加" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4824,19 +4812,19 @@ msgstr "" "ビューを作成するときにログの最初の行に DROP VIEW IF EXISTS 文を追加するかどう" "か。" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "DROP VIEW を追加" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "新しいバージョンに対して自動生成使用するコマンドのリストを定義します。" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "追跡するコマンド" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4844,11 +4832,11 @@ msgstr "" "SQL コマンドの追跡機能を使わない場合は空欄にします。[kbd]pma_tracking[/kbd] " "としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "SQL コマンド追跡テーブル" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4856,11 +4844,11 @@ msgstr "" "SQL コマンドの追跡機能が、テーブルやビューに対して自動的にバージョンを作成す" "るかどうか。" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "バージョンの自動作成" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4872,15 +4860,15 @@ msgstr "" "データベースにユーザ環境設定を保存しない場合は空欄にします。[kbd]pma_config[/" "kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "ユーザ環境設定保存テーブル" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "config 認証用のユーザ" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4888,11 +4876,11 @@ msgstr "" "pma_* テーブルが最新のものであることがわかっている場合、無効にします。これ" "は、互換性チェックをしないことにより、パフォーマンスを向上させます。" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "冗長なチェック" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4900,19 +4888,19 @@ msgstr "" "このサーバのわかりやすい説明。代わりにホスト名を表示するには、空欄のままにし" "ます。" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "このサーバの詳細な名前" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "「すべて表示」ボタンを表示するかどうか。" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "全ての行の表示を許可する" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4922,15 +4910,15 @@ msgstr "" "ください。なぜならパスワードが設定ファイルに直接書き込まれているからです。こ" "れは同じコマンドを直接実行する機能を制限するものではありません。" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "パスワード変更フォームの表示" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "「データベースを作成する」の部分を表示する" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" @@ -4938,37 +4926,37 @@ msgstr "" "テーブルを閲覧するときに、表示方向のオプションが表示されるかどうかを定義しま" "す。" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "表示方向を表示する" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "編集/挿入モードで種別フィールドを表示するかどうか定義します。" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "種別フィールドの表示" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "編集/挿入モードで関数フィールドを表示します。" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "関数フィールドの表示" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "操作ヒントを表示するかどうか。" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "操作ヒントを表示する" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4976,32 +4964,32 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] の結果へのリンク" "を表示します" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "phpinfo() リンクの表示する" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "詳細な MySQL サーバ情報を表示する" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "phpMyAdmin によって生成される SQL クエリを表示するかどうかを定義します。" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "SQL クエリの表示" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "データベースやテーブルの状態(領域の使用状況など)の表示を許可します。" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "統計を表示する" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5009,11 +4997,11 @@ msgstr "" "ツールチップが有効でデータベースのコメントが設定されている場合、名前とコメン" "トを入れ替えて表示する形なります。" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "データベースの名前の代わりにコメントを表示する" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5025,30 +5013,30 @@ msgstr "" "されます。そのフォルダはエイリアスのように呼び出されるだけで、テーブル名自体" "はそのまま変わることありません。" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "テーブルの名前の代わりにコメントを表示する" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "ツールチップにテーブルのコメントを表示する" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "使われているテーブルには印をして、テーブルがロックされていても可能であれば" "データベースを閲覧します。" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "ロックされているテーブルをスキップする" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "SQL 検証を有効にするには必要です。" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5058,7 +5046,7 @@ msgstr "SQL 検証を有効にするには必要です。" msgid "Password" msgstr "パスワード" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5066,11 +5054,11 @@ msgstr "" "[strong]注意:[/strong] PHP SOAP 拡張か PEAR SOAP がインストールされている必" "要があります。" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "SQL 検証を有効にする" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5078,12 +5066,12 @@ msgstr "" "ユーザ名を所持している場合は、ここに記述します(デフォルトは [kbd]anonymous[/" "kbd])。" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "ユーザ名" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5091,21 +5079,21 @@ msgstr "" "「データベースの作成」フォームで(可能であれば)データベース名を提案します。" "そうでなければ、テキストフィールドを空欄にします。" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "新しいデータベース名の提案" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Suhosin が検出された場合、警告をメインページに表示します。チェックを入れると" "このメッセージは表示されません。" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin 警告" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5113,11 +5101,11 @@ msgstr "" "編集モードでの textarea の 1 行の文字数。SQL クエリ用のでは 2 倍、クエリウィ" "ンドウに対しては 1.25 倍になります。" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "textarea の 1 行の文字数" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5125,31 +5113,31 @@ msgstr "" "編集モードでの textarea の行数。SQL クエリ用のでは 2 倍、クエリウィンドウに対" "しては 1.25 倍になります。" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "textarea の行数" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "データベース選択時のブラウザのウィンドウタイトル" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "何も選択していないときのブラウザのウィンドウタイトル" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "デフォルトタイトル" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "サーバ選択時のブラウザのウィンドウタイトル" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "テーブル選択時のブラウザのウィンドウタイトル" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5161,27 +5149,27 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) ヘッダを信頼するように指定することにな" "ります。[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "信頼されたプロキシのリスト(IP アドレスの許可/拒否)" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "インポート用ファイルをアップロードできるサーバ上のディレクトリ" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "アップロードディレクトリ" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "全てのデータベース内を検索することを許可します。" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "データベース検索を使用する" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5189,11 +5177,11 @@ msgstr "" "無効にすると、右端のチェックボックスに関係なく、ユーザが以下のオプションを設" "定することはできません。" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "設定に開発者向けタブを追加する" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5203,19 +5191,19 @@ msgstr "" "トでは表示されます。どのように複数のクエリに表示を含めるかは、ソース " "libraries/import.lib.php を参照してください。" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "マルチクエリの冗長表示" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "バージョンアップの確認" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "phpMyAdmin のメインページ上で最終バージョンチェックを有効にします。" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5223,7 +5211,7 @@ msgstr "phpMyAdmin のメインページ上で最終バージョンチェック msgid "Version check" msgstr "バージョンの確認" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5231,7 +5219,7 @@ msgstr "" "インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/" "ZIP_(ファイルフォーマット)]ZIP[/a] 圧縮を有効にします。" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5251,47 +5239,47 @@ msgstr "HTTP 認証" msgid "Signon authentication" msgstr "サインオン認証" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "LOAD DATA 文を使用した CSV の読み込み" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document スプレッドシート" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "簡易" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "詳細" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "データベースエクスポートオプション" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS Excel 用の CSV" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document テキスト" @@ -5462,9 +5450,8 @@ msgstr "テーブルを作成" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "名前" @@ -5807,7 +5794,7 @@ msgid "Hide" msgstr "隠す" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "ブラウザ変換機能" @@ -6730,7 +6717,7 @@ msgstr "CSV 入力のカラム数が不正です (行: %d)" msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "テーブル名" @@ -7422,7 +7409,7 @@ msgstr "パラメータ" msgid "Direction" msgstr "入出力" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "長さ/値" @@ -7681,7 +7668,7 @@ msgstr "テーブルの内容" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "属性" @@ -7976,7 +7963,7 @@ msgstr "テーブルが空のようです!" msgid "Tracking of %s.%s is activated." msgstr "%s.%s の SQL コマンド追跡機能はアクティブです。" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7987,7 +7974,7 @@ msgstr "" "スラッシュ(\"\\\")やシングルクォート(\"'\")を含める必要がある場合は ( \\" "\\xyz や a\\'b のように) その前にバックスラッシュを付けてください" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -7995,13 +7982,13 @@ msgstr "" "デフォルト値にはひとつの値のみ入力してください。バックスラッシュによるエス" "ケープや引用符を含めることはできません。例: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "インデックス" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8010,11 +7997,11 @@ msgstr "" "利用可能な変換オプションや MIME タイプの変換の一覧については %s変換機能の説" "明%s をご覧ください" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "変換オプション" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8025,34 +8012,34 @@ msgstr "" "ングルクォート (\"'\") を値に含める必要がある場合は ( \\\\xyz や a\\'b のよう" "に) バックスラッシュでエスケープしてください" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "ENUM もしくは SET データが長いので、" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "広い編集領域で作業する" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "なし" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "ユーザ定義" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "主" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "全文" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8061,25 +8048,25 @@ msgstr "" "この変換機能には説明がありません。
%s の動作については作者にご確認くださ" "い" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "%s 個のカラムを追加する" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "最低ひとつはカラムを追加してください" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "ストレージエンジン" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "パーティションの定義" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ 値を追加する" @@ -12895,6 +12882,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd](水平)、[kbd]vertical[/kbd](垂直)、数字のいずれ" +#~ "か。数字は、垂直モデルが適用される最大のカラム数。" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "カラムの編集/作成における表示方向" + #~ msgid "Create table on database %s" #~ msgstr "データベース %s にテーブルを作成する" diff --git a/po/ka.po b/po/ka.po index 28605aa351..29192cf651 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" @@ -65,7 +65,7 @@ msgstr "ძებნა" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -129,7 +129,7 @@ msgid "Database comment: " msgstr "მონაცემთა ბაზის კომენტარი: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "ცხრილის კომენტარები" @@ -139,7 +139,7 @@ msgstr "ცხრილის კომენტარები" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -157,7 +157,7 @@ msgstr "სვეტების სახელები" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -169,7 +169,7 @@ msgstr "ტიპი" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -180,7 +180,7 @@ msgstr "ნული" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "ნაგულისხმები" @@ -194,13 +194,13 @@ msgid "Links to" msgstr "Links to" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "კომენტარები" @@ -317,14 +317,14 @@ msgstr "მხოლოდ მონაცემები" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" @@ -339,8 +339,8 @@ msgstr "Switch to copied database" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -366,7 +366,7 @@ msgid "Edit or export relational schema" msgstr "Relational schema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -693,7 +693,7 @@ msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -761,7 +761,7 @@ msgstr "მონაცემების ლექსიკონი" msgid "Tracked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -843,12 +843,12 @@ msgstr "ცხრილის შემოწმება" msgid "Database Log" msgstr "მონაცემთა ბაზა" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1200,7 +1200,7 @@ msgstr "პრივილეგიების გადატვირთვ msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1208,7 +1208,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "რედაქტირება" @@ -1455,7 +1455,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1682,7 +1682,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1733,7 +1733,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1898,7 +1898,7 @@ msgstr "Maximum execution time" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2486,7 +2486,7 @@ msgstr "ინდექსი არაა განსაზღვრული! msgid "Indexes" msgstr "ინდექსები" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2524,7 +2524,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2843,18 +2843,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "ცხრილები" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2936,7 +2936,7 @@ msgstr "Invalid server index: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -3010,7 +3010,7 @@ msgstr "MySQL-მა თქვა: " msgid "Failed to connect to SQL validator!" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL-ის ახსნა" @@ -3022,11 +3022,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "PHP კოდის გარეშე" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "განახლება" @@ -3035,7 +3035,7 @@ msgstr "განახლება" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Validate SQL" @@ -3151,20 +3151,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "სტრუქტურა" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3378,7 +3378,7 @@ msgid "Set value: %s" msgstr "Set value: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Restore default value" @@ -3548,110 +3548,100 @@ msgid "Default display direction" msgstr "მონაცემთა ბაზის ჩვენების პარამეტრები" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Tab that is displayed when entering a database" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Default database tab" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Tab that is displayed when entering a server" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Default server tab" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Tab that is displayed when entering a table" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Default table tab" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 #, fuzzy msgid "Show binary contents as HEX by default" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 #, fuzzy msgid "Show binary contents as HEX" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Show database listing as a list instead of a drop down" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "მონაცემთა ბაზების სიის სახით ჩვენება" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Show server listing as a list instead of a drop down" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "სერვერების სიის სახით ჩვენება" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Table maintenance" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Display Features" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "შეცდომების იგნორირება" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "შეცდომების იგნორირება" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3659,32 +3649,32 @@ msgstr "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Maximum execution time" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "ფაილის სახის შენახვა" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "სომბოლოთა ნაკრები ფაილისათვის" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "ფორმატი" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "შეკუმშვა" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3693,68 +3683,68 @@ msgstr "შეკუმშვა" msgid "Put columns names in the first row" msgstr "Put fields names in the first row" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Fields enclosed by" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Fields escaped by" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Lines terminated by" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel edition" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Database name template" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Server name template" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Table name template" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3762,120 +3752,120 @@ msgstr "Table name template" msgid "Dump table" msgstr "%s table(s)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Include table caption" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Table caption" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Label key" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-ის ტიპი" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Export type" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "სერვერზე შენახვა" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Remember file name template" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Enclose table and field names with backquotes" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Creation/Update/Check dates" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Disable foreign key checks" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal for BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Export type" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Export defaults" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Force secured connection while using phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Force SSL connection" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3883,180 +3873,180 @@ msgstr "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Foreign key dropdown order" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "A dropdown will be used if fewer items are present" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Foreign key limit" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "დათვალიერების რეჟიმი" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Customize browse mode" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Customize default export options" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "რედაქტირების რეჟიმი" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Customize edit mode" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Export defaults" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Customize default export options" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Features" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "დაგენერირება" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Import defaults" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Customize default common import options" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "იმპორტი / ექსპორტი" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Set import and export directories and compression options" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "მონაცემთა ბაზის ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "ნავიგაციის ჩარჩო" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Customize appearance of the navigation frame" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "სერვერები" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "სერვერის ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "ცხრილების ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "მთავარი ჩარჩო" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Other core settings" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Settings that didn't fit enywhere else" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "გვერდის ნომერი:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Query window" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Customize query window options" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "უსაფრთხოება" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -4064,27 +4054,27 @@ msgstr "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "ძირითადი პარამეტრები" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "სერვერის კონფიგურაცია" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -4092,17 +4082,17 @@ msgstr "" "Advanced server configuration, do not change these options unless you know " "what they are for" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Enter server connection parameters" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "კონფიგურაციის ფაილი" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -4117,58 +4107,58 @@ msgstr "" "[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in " "documentation" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Customize export options" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Customize import defaults" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Customize navigation frame" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Customize main frame" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL მოთხოვნები" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL Query box" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Customize links shown in SQL Query boxes" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL მოთხოვნები" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL history" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4176,49 +4166,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Startup" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Customize startup page" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "დაფები" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Choose how you want tabs to work" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Customize export options" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Warning" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4226,15 +4216,15 @@ msgstr "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Extra parameters for iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4242,11 +4232,11 @@ msgstr "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignore multiple statement errors" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4256,21 +4246,21 @@ msgstr "" "This might be good way to import large files, however it can break " "transactions." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Partial import: allow interrupt" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4278,96 +4268,96 @@ msgstr "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "შემოტანილი ფაილების ფორმატი" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Use LOCAL keyword" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Put fields names in the first row" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Number of records (queries) to skip from start" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Partial import: skip queries" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Add AUTO_INCREMENT value" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "How many rows can be inserted at one time" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "ჩასმული სტრიქონების რაოდენობა" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Target for quick access icon" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "ლოგოს ჩვენება" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Display server choice at the top of the left frame" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Display servers selection" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of tables to display the table filter box" msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "String that separates databases into different tree levels" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Database tree separator" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4375,39 +4365,39 @@ msgstr "" "Only light version; display databases in a tree (determined by the separator " "defined below)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Display databases in a tree" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Disable this if you want to see all databases at once" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Use light version" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Maximum table tree depth" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "String that separates tables into different tree levels" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Table tree separator" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logo link URL" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4415,49 +4405,49 @@ msgstr "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logo link target" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Highlight server under the mouse cursor" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Enable highlighting" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Recently used tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Use less graphically intense tabs" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Light tabs" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "Maximum number of characters used when a SQL query is displayed" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4467,11 +4457,11 @@ msgstr "" "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Delete all cookies on logout" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4479,11 +4469,11 @@ msgstr "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Recall user name" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4495,52 +4485,52 @@ msgstr "" "and will be deleted as soon as you close the browser window. This is " "recommended for non-trusted environments." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Login cookie store" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Define how long (in seconds) a login cookie is valid" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Login cookie validity" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Maximum number of characters used when a SQL query is displayed" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Maximum displayed SQL length" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "Maximum number of databases displayed in left frame and database list" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Maximum databases" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4550,29 +4540,29 @@ msgstr "" "contains more rows, "Previous" and "Next" links will be " "shown." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Maximum number of rows to display" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Maximum tables" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4580,45 +4570,45 @@ msgstr "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "მეხსიერების შეზღუდვა" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alter table order by" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Use only icons, only text or both" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Iconic navigation bar" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "use GZip output buffering for increased speed in HTTP transfers" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip output buffering" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -4630,46 +4620,46 @@ msgstr "" "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Default sorting order" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Use persistent connections to MySQL databases" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Persistent connections" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Iconic table operations" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Disallow BLOB and BINARY fields from editing" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Protect binary fields" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -4682,133 +4672,133 @@ msgstr "" "Enable if you want DB-based query history (requires pmadb). If disabled, " "this utilizes JS-routines to display query history (lost by window close)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanent query history" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "How many queries are kept in history" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Query history length" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Tab displayed when opening a new query window" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Default query window tab" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Query window" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Query window" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Query window" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Select which functions will be used for character set conversion" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Recoding engine" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Rename table to" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Repair threads" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Directory where exports can be saved on server" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "დირექტორიის შენახვა" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Leave blank if not used" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Host authentication order" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Leave blank for defaults" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Host authentication rules" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "root-ით შესვლის ნებართვა" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4818,19 +4808,19 @@ msgstr "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey config file" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Authentication method to use" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4838,11 +4828,11 @@ msgstr "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "ცხრილის ჩანიშვნა" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4850,31 +4840,31 @@ msgstr "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Column information table" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "MySQL სერვერთან კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "კავშირის ტიპი" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Control user password" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4882,19 +4872,19 @@ msgstr "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Control user" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Count tables when showing database list" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "ცხრილების დათვლა" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4902,11 +4892,11 @@ msgstr "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Designer table" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4914,27 +4904,27 @@ msgstr "" "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]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA-ის გამოყენების აკრძალვა" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "What PHP extension to use; you should use mysqli if supported" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "გამოსაყენებელი PHP გაფართოება" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Hide databases matching regular expression (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "მონაცემთა ბაზების დამალვა" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4942,43 +4932,43 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL query history table" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Hostname where MySQL server is running" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "სერვერის ჰოსტის სახელი" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Logout URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Maximum number of tables displayed in table list" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Try to connect without password" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "პაროლის გარეშე დაკავშირება" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -4993,29 +4983,29 @@ msgstr "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use 'my\\_db' and not 'my_db'" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Show only listed databases" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Leave empty if not using config auth" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Password for config auth" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF schema: pages table" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -5025,21 +5015,21 @@ msgstr "" "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "მონაცემთა ბაზა" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Port on which MySQL server is listening, leave empty for default" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "სერვერის პორტი" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5051,13 +5041,13 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Recall user name" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -5065,19 +5055,19 @@ msgstr "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Relation table" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "SQL command to fetch available databases" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES command" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -5085,42 +5075,42 @@ msgstr "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Signon session name" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Socket on which MySQL server is listening, leave empty for default" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "MySQL სერვერთან კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "SSL-ის გამოყენება" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF schema: table coordinates" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -5132,13 +5122,13 @@ msgstr "" "Table to describe the display fields, leave blank for no support; suggested: " "[kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Display fields table" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5150,53 +5140,53 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Statements" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5208,25 +5198,25 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL query history table" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatic recovery mode" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5238,15 +5228,15 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "User for config auth" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -5254,11 +5244,11 @@ msgstr "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Verbose check" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -5266,11 +5256,11 @@ msgstr "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Verbose name of this server" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -5278,11 +5268,11 @@ msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Whether a user should be displayed a "show all (records)" button" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Allow to display all the rows" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5292,57 +5282,57 @@ msgstr "" "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "პაროლის შეცვლის ფორმის ჩვენება" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "მონაცემთა ბაზის შექმნის ფორმის ჩვენება" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Databases display options" msgid "Show display direction" msgstr "მონაცემთა ბაზის ჩვენების პარამეტრები" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Show open tables" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Display the function fields in edit/insert mode" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "ფუნქციების ველების ჩვენება" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Show grid" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5350,32 +5340,32 @@ msgstr "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "phpinfo() ბმულის ჩვენება" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "MySQL სერვერის შესახებ დეტალური ინფორმაციის ჩვენება" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Defines whether SQL queries generated by phpMyAdmin should be displayed" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "SQL მოთხოვნების ჩვენება" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "Allow to display database and table statistics (eg. space usage)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "სტატისტიკის ჩევნება" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5383,11 +5373,11 @@ msgstr "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Display database comment instead of its name" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5399,29 +5389,29 @@ msgstr "" "['LeftFrameTableSeparator'] directive, so only the folder is called like the " "alias, the table name itself stays unchanged" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Display table comment instead of its name" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Display table comments in tooltips" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Mark used tables and make it possible to show databases with locked tables" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5431,29 +5421,29 @@ msgstr "" msgid "Password" msgstr "პაროლი" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "მომხმარებელი:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5461,65 +5451,65 @@ msgstr "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Suggest new database name" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR textarea columns" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR textarea rows" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Default table tab" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5531,37 +5521,37 @@ msgstr "" "For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "List of trusted proxies for IP allow/deny" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Directory on server where you can upload files for import" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "ატვირთვის დირექტორია" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Allow for searching inside the entire database" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Use database search" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5571,19 +5561,19 @@ msgstr "" "libraries/import.lib.php for defaults on how many queries a statement may " "contain." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Verbose multiple statements" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5591,7 +5581,7 @@ msgstr "" msgid "Version check" msgstr "ვერსიის შემოწმება" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5599,7 +5589,7 @@ msgstr "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5627,49 +5617,49 @@ msgstr "Host authentication order" msgid "Signon authentication" msgstr "Host authentication order" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Custom color" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "მონაცემთა ბაზის ექსპორტის პარამეტრები" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV MS Excel-თვის" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document Text" @@ -5848,9 +5838,8 @@ msgstr "ცხრილის შექმნა" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "სახელი" @@ -6253,7 +6242,7 @@ msgid "Hide" msgstr "დამალვა" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" @@ -7199,7 +7188,7 @@ msgstr "Invalid field count in CSV input on line %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "ცხრილის სახელი" @@ -7917,7 +7906,7 @@ msgstr "" msgid "Direction" msgstr "პირდაპირი ბმულები" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Length/Values" @@ -8227,7 +8216,7 @@ msgstr "Table of contents" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "ატრიბუტები" @@ -8539,7 +8528,7 @@ msgstr "როგორც ჩანს ცხრილი ცარიელი msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8557,7 +8546,7 @@ msgstr "" "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8565,13 +8554,13 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "ინდექსი" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8580,11 +8569,11 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "გარდაქმნის პარამეტრები" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8596,36 +8585,36 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "არაა" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "As defined:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "პირველადი" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Fulltext" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8634,28 +8623,28 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ველის დამატება" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "You have to add at least one field." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "PARTITION definition" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new server" msgid "+ Add a value" diff --git a/po/ko.po b/po/ko.po index d361de855a..c0838b3f51 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-10-05 09:55+0200\n" "Last-Translator: Deminoth Runo \n" "Language-Team: korean \n" @@ -65,7 +65,7 @@ msgstr "검색" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -131,7 +131,7 @@ msgid "Database comment: " msgstr "데이터베이스 설명:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "테이블 설명" @@ -141,7 +141,7 @@ msgstr "테이블 설명" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -157,7 +157,7 @@ msgstr "컬럼명" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -169,7 +169,7 @@ msgstr "종류" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -180,7 +180,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "기본값" @@ -194,13 +194,13 @@ msgid "Links to" msgstr "링크 대상:" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "설명(코멘트)" @@ -314,14 +314,14 @@ msgstr "데이터만" msgid "CREATE DATABASE before copying" msgstr "복사 전에 CREATE DATABASE 실행" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "%s 추가" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" @@ -336,8 +336,8 @@ msgstr "복사한 테이블로 옮겨감" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -358,7 +358,7 @@ msgid "Edit or export relational schema" msgstr "관계 스키마를 수정 또는 내보내기" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -664,7 +664,7 @@ msgid "Check tables having overhead" msgstr "오버헤드를 가진 테이블들을 체크" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -726,7 +726,7 @@ msgstr "데이터 사전 (전체 구조보기)" msgid "Tracked tables" msgstr "추적된 테이블" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -801,12 +801,12 @@ msgstr "테이블 추적" msgid "Database Log" msgstr "데이터베이스 로그" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "\"%s\" 열의 값" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "각각의 필드에 값을 입력하세요" @@ -1136,7 +1136,7 @@ msgstr "사용권한을 다시 불러옵니다." msgid "Removing Selected Users" msgstr "선택한 사용자를 삭제" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "닫기" @@ -1144,7 +1144,7 @@ msgstr "닫기" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "수정" @@ -1369,7 +1369,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1594,7 +1594,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1644,7 +1644,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1799,7 +1799,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2330,7 +2330,7 @@ msgstr "인덱스가 설정되지 않았습니다!" msgid "Indexes" msgstr "인덱스" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2367,7 +2367,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2665,18 +2665,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "테이블 수" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2752,7 +2752,7 @@ msgstr "잘못된 서버 인덱스: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "서버 %1$s의 호스트 이름이 잘못되었습니다. 설정을 확인하십시오" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2824,7 +2824,7 @@ msgstr "MySQL 메시지: " msgid "Failed to connect to SQL validator!" msgstr "SQL 검증을 하기 위한 연결이 실패했습니다." -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL 해석" @@ -2836,11 +2836,11 @@ msgstr "SQL 해석 생략" msgid "Without PHP Code" msgstr "PHP 코드 없이 보기" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP 코드 보기" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "다시 보기" @@ -2849,7 +2849,7 @@ msgstr "다시 보기" msgid "Skip Validate SQL" msgstr "SQL 검사 생략" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL 검사" @@ -2953,20 +2953,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "구조" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3177,7 +3177,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3328,134 +3328,124 @@ msgid "Default display direction" msgstr "데이터베이스 사용량 통계" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "테이블 유지보수" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display order:" msgid "Display errors" msgstr "출력 순서:" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "파일로 저장" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "파일 문자셋:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "압축" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3464,69 +3454,69 @@ msgstr "압축" msgid "Put columns names in the first row" msgstr "맨처음에 필드 이름을 출력" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "필드 감싸기" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "필드 특수문자(escape) 처리" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "줄(열) 구분자" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "줄(열) 구분자" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "파일명 템플릿" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "파일명 템플릿" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "파일명 템플릿" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3535,400 +3525,400 @@ msgstr "파일명 템플릿" msgid "Dump table" msgstr "%s개 테이블 " -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 #, fuzzy msgid "Relations" msgstr "테이블 작업" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "내보내기" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "파일명 템플릿" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "테이블, 필드명에 백쿼터(`) 사용" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 #, fuzzy msgid "Use delayed inserts" msgstr "확장된 inserts" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "확장된 inserts" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "테이블이 없습니다" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV 데이터" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "파일 가져오기" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 #, fuzzy msgid "LaTeX" msgstr "Label" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "데이터베이스 사용량 통계" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "서버" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "문서" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "페이지:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "질의 창" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Authenticating..." msgid "Authentication" msgstr "인증중입니다..." -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy #| msgid "Authenticating..." msgid "Authentication settings" msgstr "인증중입니다..." -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL 질의" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL 질의" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL 질의" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL 내력(히스토리)" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3936,285 +3926,285 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "상태" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "테이블 " -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "파일로 테이블 대치하기" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "맨처음에 필드 이름을 출력" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT 값 추가" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "테이블 분석" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4222,451 +4212,451 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "리소스 제한" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "다음 순서대로 테이블 정렬(변경)" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "질의 창" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "질의 창" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "질의 창" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "테이블 이름 바꾸기" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "연결 수" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "테이블이 없습니다" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "데이터베이스가 없습니다" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "서버 선택" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4675,342 +4665,342 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "데이터베이스명" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "서버 선택" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "테이블 분석" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "테이블 복구" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "서버 선택" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "명세" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "Automatically create versions" msgstr "서버 버전" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "데이터베이스 사용량 통계" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "테이블 보기" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "grid 보기" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "행(레코드) 통계" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5018,28 +5008,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5049,91 +5039,91 @@ msgstr "" msgid "Password" msgstr "암호" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "사용자명:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "컬럼 추가/삭제" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "기본값" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5141,56 +5131,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5198,13 +5188,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5232,50 +5222,50 @@ msgstr "인증중입니다..." msgid "Signon authentication" msgstr "인증중입니다..." -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "사용자 지정 색상" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy msgid "Database export options" msgstr "데이터베이스 사용량 통계" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS엑셀 CSV 데이터" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5449,9 +5439,8 @@ msgstr "새 페이지 만들기" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "이름" @@ -5826,7 +5815,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "" @@ -6700,7 +6689,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7395,7 +7384,7 @@ msgstr "" msgid "Direction" msgstr "생성" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "길이/값*" @@ -7679,7 +7668,7 @@ msgstr "테이블 설명" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "보기" @@ -7977,7 +7966,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7988,30 +7977,30 @@ msgstr "" "오: 'a','b','c'...
여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다" "면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "기본값에는, 역슬래시나 따옴표 없이 단 하나의 값을 넣으십시오. (예: a)" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "인덱스" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8022,63 +8011,63 @@ msgstr "" "오: 'a',100, b,'c'...
여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다" "면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "없음" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "기본" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Fulltext" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "필드 추가하기" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "출력하려면 적어도 1개 이상의 열(칼럼)을 선택해야 합니다." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "새 사용자 추가" diff --git a/po/lt.po b/po/lt.po index 1adf6be79b..796b289be7 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-08-08 18:05+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" @@ -66,7 +66,7 @@ msgstr "Paieška" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Duomenų bazės komentaras: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Lentelės komentarai" @@ -140,7 +140,7 @@ msgstr "Lentelės komentarai" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Stulpelis" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Tipas" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Nutylint" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Sąryšis su" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Komentarai" @@ -313,14 +313,14 @@ msgstr "Tik duomenys" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prieš kopijuojant" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Pridėti %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" @@ -335,8 +335,8 @@ msgstr "Pereiti į nukopijuotą duomenų bazę" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -356,7 +356,7 @@ msgid "Edit or export relational schema" msgstr "Keisti arba eksportuoti ryšių schemą" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -671,7 +671,7 @@ msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -733,7 +733,7 @@ msgstr "Duomenų žodynas" msgid "Tracked tables" msgstr "Sekamos lentelės" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -808,12 +808,12 @@ msgstr "Sekti lentelę" msgid "Database Log" msgstr "Duomenų bazės žurnalas" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Stulpelio „%s“ reikšmės" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Įveskite kiekvieną reikšmę atskirame laukelyje." @@ -1156,7 +1156,7 @@ msgstr "Perkraunamos privilegijos" msgid "Removing Selected Users" msgstr "Šalinami pažymėti vartotojai" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Uždaryti" @@ -1164,7 +1164,7 @@ msgstr "Uždaryti" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Redaguoti" @@ -1388,7 +1388,7 @@ msgstr "Prašome pridėti bent vieną kintamąjį į eilę" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1606,7 +1606,7 @@ msgstr "" "Nepavyko sudaryti diagramos tinklelio su importuota konfigūracija. Nustatoma " "į numatytąją konfigūraciją..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1657,7 +1657,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1787,7 +1787,7 @@ msgstr "Užklausos vykdymo laikas" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2310,7 +2310,7 @@ msgstr "Nėra aprašytų indeksų!" msgid "Indexes" msgstr "Indeksai" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2347,7 +2347,7 @@ msgid "" msgstr "" "Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2657,18 +2657,18 @@ msgid "shared" msgstr "padalintas" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Lentelės" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2743,7 +2743,7 @@ msgstr "Blogas serverio indeksas: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2815,7 +2815,7 @@ msgstr "MySQL atsakymas: " msgid "Failed to connect to SQL validator!" msgstr "Nepavyko prisijungti prie SQL tikrintuvo!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Paaiškinti SQL" @@ -2827,11 +2827,11 @@ msgstr "Praleisti SQL užklausos aiškinimą" msgid "Without PHP Code" msgstr "be PHP kodo" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP kodas" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Atnaujinti" @@ -2840,7 +2840,7 @@ msgstr "Atnaujinti" msgid "Skip Validate SQL" msgstr "Praleisti SQL užklausos tikrinimą" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Patikrinti SQL užklausą" @@ -2952,20 +2952,20 @@ msgid "Click to toggle" msgstr "Spustelėkite suskleidimui/atskleidimui" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktūra" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3165,7 +3165,7 @@ msgid "Set value: %s" msgstr "Nustatyti reikšmę: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Atstatyti numatytąsias reikšmes" @@ -3328,455 +3328,443 @@ msgid "Default display direction" msgstr "Numatytoji rodymo kryptis" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] arba skaičius, kuris nurodo " -"maksimalų skaičių, kada naudojamas vertikalusis režimas" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Rodyti krypti keičiamiems/sukuriamiems stulpeliams" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Kortelė kuri yra rodoma kai įeinama į duomenų bazę" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Numatyta duomenų bazės kortelė" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Kortelė kuri yra rodoma kai įeinama į serverį" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Įprastinė serverio kortelė" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Kortelė kuri rodoma kai įeinama į lentelę" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Numatytoji lentelės kortelė" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Rodyti dvejetainį turinį kaip šešioliktainį pagal nutylėjimą" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Rodyti dvejetainį turinį kaip šešioliktainį" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" "Rodyti duomenų bazės sąrašą kaip paprastą sąrašą vietoje išskleidžiamojo " "sąrašo" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Rodyti duomenų bazes kaip sąrašą" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" "Rodyti serverio sąrašą kaip paprastą sąrašą vietoje išskleidžiamojo sąrašo" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Rodyti serverius kaip sąrašą" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Išjungti daug lentelių techninę priežiūrą" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Redaguoti SQL užklausas iškylančiame lange" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Redaguoti lange" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Rodyti klaidas" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Rinkti klaidas" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Rodyti piktogramas įspėjimams, klaidoms ir informaciniams pranešimams" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Piktograminės klaidos" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" "Nustatyti, kiek sekundžių scenarijus gali veikti ([kbd]0[/kbd] nėra ribos)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Ilgiausias vykdymo laikas" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Išsaugoti į failą" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Failo simbolių koduotė:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formatas" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Glaudinimas" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Stulpelių pavadinimus įrašyti pirmoje eilutėje" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Stulpeliai apskliausti" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Prieš stulpelių spec. simbolius" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Pakeisti NULL į" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Pašalinti CRLF simbolius laukeliuose" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Laukai baigiasi" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Eilutės baigiasi" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel variantas" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Duomenų bazės vardo šablonas" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Serverio vardo šablonas" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Lentelės vardo šablonas" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Parodyti lentelę" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Įterpti lentelės antraštę" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Lentelės antraštė" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Pratęsta lentelės antraštė" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Pavadinimo raktas" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME tipas" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Sąryšiai" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Eksporto metodas" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Išsaugoti serveryje" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Perrašyti esamus failus" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Atsiminti failo vardo šabloną" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Įdėti lentelių ir laukų pavadinimus į kabutes" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL suderinamumo režimas" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "CREATE TABLE nustatymai:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Sukūrimo/atnaujinimo/tikrinimo datos" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Naudoti užlaikytus įterpimus" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Atsisakyti išorinių raktų tikrinimo" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Naudoti šešioliktainę BLOB'ui" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Naudoti ignoruojamuosius įterpimus" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Tikrinti sintaksę kai įterpiami duomenys" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Didžiausias sukurtos užklausos ilgis" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Eksportavimo tipas" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Naudoti transakciją visam eksportui" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Eksportavimo laikas UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Priverstinai naudoti saugų prisijungimą kol naudojamasi phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Naudoti SSL susijungimą" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Svetimo rakto išskleidimo rikiavimas" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Išskleidžiamas sąrašas bus naudojamas jei elementų bus mažai" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Svetimų raktų apribojimas" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Naršymo režimas" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Adaptuoti naršymo režimą" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Pasirinkti numatytuosius nustatymus" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Kūrėjas" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Nustatymai phpMyAdmin kūrėjams" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Redagavimo režimas" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Adaptuoti redagavimo režimą" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Eksportuoti numatytąsias reikšmes" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Pasirinkti numatytuosius eksportavimo nustatymus" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Galimybės" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Bendra" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Nustatyti keletą dažniausiai naudojamų nustatymų" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Importuoti numatytąsias reikšmes" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Adaptuoti numatytuosius bendrus importavimo nustatymus" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Importuoti/eksportuoti" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Naudoti importavimo ir eksportavimo katalogus ir suspaudimo nustatymus" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Duomenų bazių rodymo nustatymai" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigacijos rėmelis" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Adaptuoti navigacijos rėmelio išvaizdą" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Serveriai" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Serverių rodymo nustatymai" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Lentelių rodymo nustatymai" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Pagrindinis rėmelis" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Kiti branduolio nustatymai" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Kiti nustatymai" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Puslapių pavadinimai" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3786,22 +3774,22 @@ msgstr "" "[a@Documentation.html#cfg_TitleTable]dokumentacija[/a] magiškiesiems " "tekstams, kurie bus paversti specialiomis reikšmėmis." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Užklausų langas" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Adaptuoti užklausos lango nustatymus" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Saugumas" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3809,23 +3797,23 @@ msgstr "" "Atkreipkite dėmesį, kad phpMyAdmin yra tik vartotojo sąsaja ir jo galimybės " "neriboja MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Pagrindiniai nustatymai" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Atpažinimas" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Atpažinimo nustatymai" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Serverio nustatymai" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3833,15 +3821,15 @@ msgstr "" "Išplėstinė serverio konfigūracija, nekeiskite šių nustatymų nebent žinote " "kam jie skirti" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Įvesti serverio ryšio nustatymus" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Konfigūracijos laikmena" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3851,11 +3839,11 @@ msgstr "" "papildomų galimybių, žiūrėti [a@Documentation.html#linked-tables]phpMyAdmin " "konfigūracijos laikmena[/a] dokumentacijoje" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Pakeitimų sekimas" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3863,44 +3851,44 @@ msgstr "" "Sekti duomenų bazėje atliktus pakeitimus. Reikia phpMyAdmin nustatymų " "saugyklos." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Adaptuoti eksportavimo nustatymus" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Adaptuoti importavimo numatytąsias reikšmes" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Adaptuoti navigacijos rėmelį" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Adaptuoti pagrindinė rėmelį" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL užklausos" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL užklausos langelis" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Adaptuoti nuorodas rodomas SQL užklausos langelyje" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL užklausų nustatymai" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL tikrintuvas" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3908,43 +3896,43 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Paleidimas" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Adaptuoti paleidimo (pagrindinį) puslapį" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Kortelės" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Pasirinkti kaip norite, kad veiktų kortelės" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Teksto laukeliai" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Adaptuoti teksto įvedimo laukelius" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! tekstas" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Perspėjimai" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Išjungti keletą perspėjimų kuriuos rodo phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3952,15 +3940,15 @@ msgstr "" "Įjungti [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] glaudinimą importavimo " "ir eksportavimo nustatymams" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Papildomas parametras iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3968,11 +3956,11 @@ msgstr "" "Jeigu įjungta, phpMyAdmin tęsia įvairių-sakinių užklausų paleidinėjimą netgi " "jei viena užklausa nepavyksta" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignoruoti įvairias sakinių klaidas" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3982,21 +3970,21 @@ msgstr "" "vykdymo laiko ribos. Gali būti naudinga importuojant didelius failus, tačiau " "gali sugadinti tranzakcijas." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Dalinis importas: leisti pertrauktis" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Nenutraukti įvykus INSERT klaidai" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Pakeisti lentelės turinį failo duomenimis " -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4004,127 +3992,127 @@ msgstr "" "Numatytasis formatas; žinokite, kad šis sąrašas priklauso nuo vietos " "(duomenų bazė, lentelė) ir tik SQL visada pasiekiamas" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Įkelto failo formatas" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Naudoti LOCAL raktažodį" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Stulpelių pavadinimai pirmoje eilutėje" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Neimportuoti tuščių eilučių" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importuoti valiutas ($5.00 kaip 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importuoti procentus kaip dešimtainius (12.00% kaip .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Praleisti užklausų skaičių nuo pradžios" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Dalinis importas: praleisti užklausas" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nenaudoti AUTO_INCREMENT nulinėms reikšmėms" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Kiek eilučių gali būti įdėta per vieną kartą" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Įkeltų eilučių skaičius" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Logotipą rodyti kairiame rėmelyje" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Rodyti logotipą" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Rodyti serverio pasirinkimus viršuje kairiame rėmelyje" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Rodyti serverių pasirinkimą" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Minimalus skaičius lentelių, kad rodyti lentelių filtro dėžutę" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Simboliai kurie atskiria duomenų bazes į atskiras medžio šakas" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Duomenų bazės medžio skyriklis" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" "Tik maža versija; rodyti duomenų bazės medį (skyriklis nustatomas žemiau)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Rodyti duomenų bazes medyje" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Išjungti tai jeigu norite matyti visas duomenų bazes iškart" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Naudoti mažą versiją" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Maksimalus lentelių medžio gylis" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Simboliai kurie atskiria lenteles į skirtingas medžio šakas" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Lentelės medžio skyriklis" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "Adresas kur nuves logotipas esantis navigacijos rėmelyje" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logotipo saito adresas" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4132,45 +4120,45 @@ msgstr "" "Atidaryti susijusį puslapį pagrindiniame lange ([kbd]pagrindiniame[/kbd]) " "arba ([kbd]naujame[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logotipas nukreipia į nuorodą" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Paryškinti serverį užvedus pelės žymekliu" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Įjungti paryškinimą" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" "Didžiausias skaičius paskiausiai naudotų lentelių; nustatyti 0, kad išjungti" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Paskiausiai naudotos lentelės" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Naudoti mažiau grafiškas korteles" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Lengvos kortelės" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "Didžiausias rodomas simbolių kiekis ne skaitiniuose stulpeliuose" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Apriboti stulpelių simbolius" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4181,21 +4169,21 @@ msgstr "" "lengva pamiršti atsijungi iš kitų skirtingų serverių (prie kurių esate " "prisijungę)." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Ištrinti visus slapukus atsijungiant" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4207,55 +4195,55 @@ msgstr "" "egzistuojančioje sesijoje ir bus ištrinta naršyklės uždarymo momentu. " "Rekomenduojama nepatikimose aplinkose." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Prisijungimo slapuko saugojimas" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Nustatyti prisijungimo slapuko galiojimo laiką (sekundžių tikslumu)" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Prisijungimo slapuko galiojimas" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Padvigubinti LONGTEXT laukelių dydį" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Didesnis textarea LONGTEXT'ui" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Naudoti piktogramas pagrindiniame puslapyje" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" "Didžiausias leistinas simbolių kiekis naudojamas SQL užklausai parodyti" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Maksimalus SQL rodymo ilgis" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Naudotojai negali nustatyti didesnės reikšmės" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Maksimalus skaičius rodomų duomenų bazių kairiame rėmelyje ir duomenų bazių " "sąraše" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Didžiausias duomenų bazių skaičius" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4265,29 +4253,29 @@ msgstr "" "rinkinys turi daugiau eilučių, „Ankstesnis“ ir „Kitas“ saito nuorodos bus " "parodytos." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Maksimalus skaičius eilučių rodymui" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Maksimalus skaičius lentelių rodomų lentelių sąraše" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Didžiausias skaičius lentelių" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt įspėjimas" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4295,63 +4283,63 @@ msgstr "" "Skaičius leidžiamų paskirti baitų scenarijui (skriptui), pvz., [kbd]32M[/" "kbd] ([kbd]0[/kbd] neriboja)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Atminties apribojimai" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" "Naudoti natūralią tvarką rikiuojant lentelių ir duomenų bazių pavadinimus" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Natūrali tvarka" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Naudoti tik piktogramas (ikonas), tik tekstą arba abu" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Piktograminė navigacijos juostelė" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "naudoti GZip išvedimo buferiui tam, kad padidinti greitį HTTP persiuntimų" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip išvedimo buferis" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Numatytoji rikiavimo tvarka" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Naudoti ilgalaikius prisijungimus prie MySQL duomenų bazių" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Ilgalaikiai sujungimai" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4361,23 +4349,23 @@ msgstr "" "puslapyje, kai neįmanoma rasti phpMyAdmin nustatytų saugyklai reikalingų " "lentelių" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Trūksta phpMyAdmin konfigūracijos saugojimo lentelės" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Piktograminės lentelių operacijos" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Neleisti redaguoti BLOB ir BINARY stulpelių" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Apsaugoti dvejetainius stulpelius" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4387,181 +4375,181 @@ msgstr "" "(reikalinga phpMyAdmin nustatymų saugykla). Jeigu išjungta, naudoja " "JavaScript užklausų istorijai rodyti (prarandama uždarius langą)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Nuolatinė užklausų istorija" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Kiek užklausų laikoma istorijoje" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Užklausų istorijos ilgis" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Parodoma kortelė kai atidaromas naujas užklausos langas" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Numatytoji užklausos lango kortelė" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Užklausos lango aukštis (taškais)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Užklausos lango aukštis" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Užklausos lango plotis (taškais)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Užklausos lango plotis" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Pasirinkti kokios funkcijos bus naudojamos ženklų rinkinio (koduotės) " "konvertavimui" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Įrašymo varikliukas" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "Kai naršomos lentelės, atsimenamas kiekvienos lentelės rikiavimas" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Įsiminti lentelės rūšiavimą" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Pakartoti antraštes kas X langelių, [kbd]0[/kbd] išjungia šią galimybę" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Pakartoti antraštes" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Rodyti pagalbos mygtuką vietoje dokumentacijos teksto" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Rodyti pagalbos mygtuką" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Katalogas kur eksportai gali būti išsaugomi serveryje" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Išsaugoti katalogą" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Palikite tuščią, jei nenaudojamas" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Palikite tuščią nutylėtoms reikšmėms" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Leisti prisijungti be slaptažodžio" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Leisti prisijungti kaip root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Autentifikacijos tipas" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Pažymėti lentelę" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Stulpelio informacinė lentelė" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Naudoti suspaudimą jungiantis prie MySQL serverio" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Naudoti suspaustą susijungimą" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Kaip prisijungti prie serverio, jei nesate tikras palikite [kbd]tcp[/kbd]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Susijungimo tipas" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Kontroliuoti naudotojų slaptažodį" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4569,19 +4557,19 @@ msgstr "" "Specialus MySQL naudotojas sukonfigūruotas su ribotom galimybėm, daugiau " "informacijos [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Kontroliuoti naudotoją" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Suskaičiuoti lenteles kai rodomas duomenų bazių sąrašas" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Suskaičiuoti lenteles" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4589,11 +4577,11 @@ msgstr "" "Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Suprojektuoti lentelę" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4601,28 +4589,28 @@ msgstr "" "Daugiau informacijos [a@http://sf.net/support/tracker.php?aid=1849494]PMA[/" "a] ir [a@http://bugs.mysql.com/19588]MySQL[/a] klaidų puslapiuose" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Neleisti matyti INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Kokius PHP plėtinius naudoti; Jūs turėtumėte naudoti mysqli jei palaikoma" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Naudoti PHP išplėtimą" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Slėpti duomenų bazės, atitinkančias standartines išraiškas (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Slėpti duomenų bazes" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4630,43 +4618,43 @@ msgstr "" "Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: [kbd]pma_history" "[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL užklausų žurnalo lentelė" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Kompiuterio, kuriame veikia MySQL serveris, pavadinimas" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Serverio adresas" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Atsijungimo nuoroda" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Maksimalus skaičius lentelių rodomų lentelių sąraše" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Bandyti prisijungti be slaptažodžio" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Prisijungti be slaptažodžio" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4681,30 +4669,30 @@ msgstr "" "ir pabaigoje nurodykite [kbd]*[/kbd], kad parodytumėte likusias abėcėlės " "tvarka." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Rodyti tik šias duomenų bazes" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Palikite tuščią, jei nenaudojate autentifikacijos pagal nustatymus" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF schema: puslapių lentelė" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4714,21 +4702,21 @@ msgstr "" "informaciją rasite [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. " "Palikite tušią, kad nepalaikytų. Pasiūlymas: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Duomenų bazės vardas" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Jungtis per kurią MySQL serveris laukia atsakymo, palikite tuščią numatytam " "nustatymui" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Serverio jungtis" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -4740,11 +4728,11 @@ msgstr "" "Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Paskiausiai naudota lentelė" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4752,19 +4740,19 @@ msgstr "" "Palikite tuščią jei nenorite, kad palaikytų [a@http://wiki.phpmyadmin.net/" "pma/relation]sąryšines nuorodas[/a], pasiūlymas: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Sąryšių lentelė" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "SQL komanda išgauti prieinamas duombazes" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES komanda" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4772,50 +4760,50 @@ msgstr "" "Žiūrėkite [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "autentifikacijos tipus[/a] dėl pavyzdžių" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Prisijungimo sesijos vardas" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Prisijungimo adresas" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Prievadas, kurio klausosi MySQL serveris, palikite tuščią įprastiniam" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Serverio prievadas (socket)" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Įjungti SSL susijungimams prie MySQL serverio" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Naudoti SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF schema: lentelės koordinatės" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Rodyti lentelės stulpelius" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -4826,69 +4814,69 @@ msgstr "" "Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Naudotojo sąsajos nustatymų lentelė" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Pridėti DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Pridėti DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Pridėti DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Sekamos užklausos" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "SQL užklausų sekimo lentelė" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Automatiškai sukurti versijas" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -4900,98 +4888,98 @@ msgstr "" "Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Išplėstinis patikrinimas" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Leisti rodyti visas eilutes (įrašus)" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Rodyti slaptažodžio keitimo formą" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Rodyti duomenų bazės sukūrimo formą" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "Numatytoji rodymo kryptis" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Rodyti laukelių tipus" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Rodyti funkcijų laukelius redagavimo/įterpimo režime" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Rodyti funkcijų laukelius" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show indexes" msgid "Show hint" msgstr "Rodyti indeksus" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4999,44 +4987,44 @@ msgstr "" "Rodyti nuorodą į [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "išvedimą" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Rodyti phpinfo() nuorodą" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Rodyti išsamią MySQL serverio informaciją" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Nustato kada turi būti rodomos SQL užklausos kurias sugeneravo phpMyAdmin" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Rodyti SQL užklausas" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Leisti rodyti duomenų bazių ir lentelių statistiką (pavyzdžiui vietos " "naudojimą)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Rodyti statistika" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Rodyti duomenų bazės komentarą vietoje jos pavadinimo" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5044,28 +5032,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Rodyti lentelės komentarą vietoj jos pavadinimo" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Praleisti užrakintas lenteles" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Reikalaujama, kad SQL Validator būtų įjungtas" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5075,7 +5063,7 @@ msgstr "Reikalaujama, kad SQL Validator būtų įjungtas" msgid "Password" msgstr "Slaptažodis" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5083,11 +5071,11 @@ msgstr "" "[strong]Įspėjimas:[/strong] reikalauja PHP SOAP įskiepio arba PEAR SOAP, kad " "būtų įdiegtas" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Įjungti SQL Validator (tikrintoją)" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5095,12 +5083,12 @@ msgstr "" "Jeigu Jūs turite individualizuotą slapyvardį, parašykite jį čia (numatytasis " "yra [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Vartotojo vardas" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5108,59 +5096,59 @@ msgstr "" "Pasiūlo duombazės pavadinimą kai būnama „Sukurti duombazę“ punkte (jeigu " "įmanoma) arba palieka tuščią laukelį" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Pasiūlyti naują duomenų bazės pavadinimą" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Įspėjimas rodomas pagrindiniame puslapyje jeigu Suhosin yra aptinkamas" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin įspėjimas" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Textarea stulpeliai" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Textarea eilutės" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Naršyklės lango pavadinimas kai duomenų bazė yra pasirinkta" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Naršyklės lango pavadinimas kai niekas nepasirinkta" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Numatytasis pavadinimas" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Naršyklės lango pavadinimas kai serveris yra pasirinktas" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Naršyklės lango pavadinimas, kai pasirinkta lentelė" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5168,27 +5156,27 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Sąrašas patikimų proxy serverių IP leidimui/atmetimui" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Serverio katalogas į kurį Jūs galite įkelti failus importavimui" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Įkelties katalogas" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Leisti paiešką visos duomenų bazės viduje" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Naudoti duomenų bazės paiešką" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5196,31 +5184,31 @@ msgstr "" "Kai išjungta, naudotojai negali nustatyti jokių žemiau esančių nustatymų, " "nepriklausomo nuo to, kad pažymėjimo laukelis yra dešinėje" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Patikrinti ar naujausia versija" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Įjungia naujausios versijos patikrinimą pagrindiniame phpMyAdmin puslapyje" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5228,7 +5216,7 @@ msgstr "" msgid "Version check" msgstr "Versijos patikrinimas" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5236,7 +5224,7 @@ msgstr "" "Įjungia [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] glaudinimą " "importo ir eksporto operacijoms" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5256,47 +5244,47 @@ msgstr "HTTP autentifikacija" msgid "Signon authentication" msgstr "Prisijungimo tapatybės nustatymas" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV naudojant LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document skaičiuoklė" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Greitas" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Pritaikytas" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Duomenų bazės eksportavimo nustatymai" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV formatas MS Excel programai" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document rašyklė" @@ -5471,9 +5459,8 @@ msgstr "Sukurti lentelę" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Pavadinimas" @@ -5812,7 +5799,7 @@ msgid "Hide" msgstr "Paslėpti" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Naršyklės transformacija" @@ -6694,7 +6681,7 @@ msgstr "Neteisingas stulpelių skaičius CSV įvedimo eilutėje %d." msgid "DocSQL" msgstr "docSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Lentelės vardas" @@ -7393,7 +7380,7 @@ msgstr "Parametrai" msgid "Direction" msgstr "Nukreipimas" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Ilgis/reikšmės*" @@ -7650,7 +7637,7 @@ msgstr "Turinys" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributai" @@ -7945,7 +7932,7 @@ msgstr "Lentelė atrodo tuščia!" msgid "Tracking of %s.%s is activated." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7958,7 +7945,7 @@ msgstr "" "reikšmių, tuomet prieš šios simbolius reikia papildomo dešininio įžambaus " "brūkšnio (pavyzdžiui: '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -7966,13 +7953,13 @@ msgstr "" "Nenaudokite išskyrimo simbolių ar kabučiu, nurodydami reikšmę pagal " "nutylėjimą. Naudokitės šiuo formatu: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeksas" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -7981,11 +7968,11 @@ msgstr "" "Norėdami gauti pilną sąrašą galimų transformacijų ir jų MIME tipų " "transformacijų, spauskite %stransformacijos paaiškinimą%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Transformacijos nustatymai" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -7998,34 +7985,34 @@ msgstr "" "(\"'\"), naudokite viršutinį vertikalų pasvirą brūkšnį prieš šiuos simbolius " "(pvz: '\\\\xyz' ar 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "ENUM arba SET duomenys per ilgi?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Padidinti redagavimo erdvę" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Nėra" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Kaip nurodyta:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Pirminis" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Fulltext" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8033,25 +8020,25 @@ msgid "" msgstr "" "Ši transformacija neturi paaiškinimo.
Klauskite autoriaus ką %s daro." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Pridėti %s stulpelį(-ius)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Saugojimo variklis" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "SKAIDINIO (PARTITION) apibrėžimas" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Pridėti reikšmę" @@ -12763,6 +12750,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] arba skaičius, kuris nurodo " +#~ "maksimalų skaičių, kada naudojamas vertikalusis režimas" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Rodyti krypti keičiamiems/sukuriamiems stulpeliams" + #~ msgid "Create table on database %s" #~ msgstr "Sukurti naują lentelę duomenų bazėje %s" diff --git a/po/lv.po b/po/lv.po index 56050362f7..f5e84ff166 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" @@ -65,7 +65,7 @@ msgstr "Meklēt" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -127,7 +127,7 @@ msgid "Database comment: " msgstr "Datubāzes komentārs: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Komentārs tabulai" @@ -137,7 +137,7 @@ msgstr "Komentārs tabulai" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -155,7 +155,7 @@ msgstr "Kolonnu nosaukumi" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -167,7 +167,7 @@ msgstr "Tips" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -178,7 +178,7 @@ msgstr "Nulle" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Noklusēts" @@ -192,13 +192,13 @@ msgid "Links to" msgstr "Linki uz" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Komentāri" @@ -315,14 +315,14 @@ msgstr "Tikai dati" msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" @@ -337,8 +337,8 @@ msgstr "Pārslēgties uz nokopēto datubāzi" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -364,7 +364,7 @@ msgid "Edit or export relational schema" msgstr "Relāciju shēma" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -690,7 +690,7 @@ msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -756,7 +756,7 @@ msgstr "Datu vārdnīca" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -836,12 +836,12 @@ msgstr "Pārbaudīt tabulu" msgid "Database Log" msgstr "Datubāze" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1181,7 +1181,7 @@ msgstr "Globālās privilēģijas" msgid "Removing Selected Users" msgstr "Dzēst izvēlētos lietotājus" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1189,7 +1189,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Labot" @@ -1423,7 +1423,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1648,7 +1648,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1698,7 +1698,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1855,7 +1855,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2429,7 +2429,7 @@ msgstr "Nav definēti indeksi!" msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2466,7 +2466,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2773,18 +2773,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabulas" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2860,7 +2860,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2932,7 +2932,7 @@ msgstr "MySQL teica: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Izskaidrot SQL" @@ -2944,11 +2944,11 @@ msgstr "Neizskaidrot SQL" msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Izveidot PHP kodu" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Atjaunot" @@ -2957,7 +2957,7 @@ msgstr "Atjaunot" msgid "Skip Validate SQL" msgstr "Nepārbaudīt SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Pārbaudīt SQL" @@ -3071,20 +3071,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktūra" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3297,7 +3297,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3447,135 +3447,125 @@ msgid "Default display direction" msgstr "Datubāzu eksporta opcijas" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Pārsaukt datubāzi par" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Tabulas apkalpošana" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Rādīt iespējas" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Saglabāt kā failu" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Tabulas kodējums:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formats" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3584,71 +3574,71 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Likt kolonnu nosaukumus pirmajā rindā" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Lauki iekļauti iekš" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Glābjoša (escape) rakstzīme ir" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Aizvietot NULL ar" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Rindas atdalītas ar" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Rindas atdalītas ar" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel redakcija" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3656,397 +3646,397 @@ msgstr "Faila nosaukuma šablons" msgid "Dump table" msgstr "%s tabula(s)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Iekļaut tabulas virsrakstu" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Tabulas virsraksts" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Tabulas virsraksta turpinājums" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Etiķetes atslēga" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME tips" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relācijas" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Eksporta veids" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Pārrakstīt eksistējošos failus" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Faila nosaukuma šablons" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Lietot apostrofa simbolu [`] tabulu un lauku nosaukumiem" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Izveidošanas/Atjaunošanas/Piekļuves datumi" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Lietot aizturētos INSERT" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Nepārbaudīt ārējās atslēgas" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Lietot IGNORE INSERTS" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Eksporta veids" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Iekļaut eksportu transakcijā" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Eksporta veids" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV dati" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "General" msgstr "Uzģenerēja" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Importēt failus" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "Serveris" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentācija" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Lapas numurs:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentācija" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL vaicājums" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL vaicājums" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL vaicājums" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL vēsture" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4054,288 +4044,288 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Statuss" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Tabula" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Lietot teksta lauku" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Likt kolonnu nosaukumus pirmajā rindā" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Analizēt tabulu" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4343,452 +4333,452 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Resursu ierobežojumi" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Mainīt datu kārtošanas laukus" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Pārsaukt tabulu uz" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Konekcijas" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Nav tabulu" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Defragmentēt tabulu" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Nav datubāzu" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "Servera izvēle" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4797,345 +4787,345 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Datubāze" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "Servera ID" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizēt tabulu" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Restaurēt tabulu" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Servera izvēle" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Rādu kolonnu komentārus" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentēt tabulu" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Parametrs" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "Automatically create versions" msgstr "Servera versija" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "Rādīt tabulas" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Rādīt režģi" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Rādīt pilnos vaicājumus" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Rindas statistika" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5143,28 +5133,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5174,91 +5164,91 @@ msgstr "" msgid "Password" msgstr "Parole" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Lietotājvārds:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Noklusēts" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5266,56 +5256,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5323,13 +5313,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5349,47 +5339,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV dati MS Excel formātā" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5563,9 +5553,8 @@ msgstr "Izveidot jaunu lapu" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nosaukums" @@ -5944,7 +5933,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Pārlūkprogrammas transformācija" @@ -6835,7 +6824,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7537,7 +7526,7 @@ msgstr "" msgid "Direction" msgstr "Izveidošana" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Garums/Vērtības*" @@ -7827,7 +7816,7 @@ msgstr "Satura rādītājs" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atribūti" @@ -8140,7 +8129,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8158,7 +8147,7 @@ msgstr "" "(\\) vai vienkāršo pēdiņu (') kādā no šīm vērtībām, lieciet tās priekšā " "atpakaļējo slīpsvītru (piemēram, '\\\\xyz' vai 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8166,13 +8155,13 @@ msgstr "" "Noklusētajām vērtībām, lūdzu ievadiet tikai pašu vertību, bez izsargāšanās " "ar atpakaļējo slīpsvītru vai pēdiņām, lietojot šo formatu: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indekss" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8181,11 +8170,11 @@ msgstr "" "Lai iegūtu pieejamo transformāciju opcijas un to MIME tipu transformācijas, " "uzklikšķiniet uz %stransformāciju apraksti%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Transformācijas opcijas" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8197,64 +8186,64 @@ msgstr "" "vienkāršā pēdiņa (\"'\") starp šīm vērtībām, lieciet tās priekšā vēl vienu " "atpakaļējo slīpsvītru (piemēram '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nav" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primārā" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Pilni teksti" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "Šai transformācijai nav apraksta.
Jautājiet autoram, ko %s dara." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Pievienot %s lauku(s)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Pievienot jaunu lietotāju" diff --git a/po/mk.po b/po/mk.po index 47a2216137..fc843e6134 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" @@ -66,7 +66,7 @@ msgstr "Пребарување" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -128,7 +128,7 @@ msgid "Database comment: " msgstr "Коментар на базата на податоци:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Коментар на табелата" @@ -138,7 +138,7 @@ msgstr "Коментар на табелата" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Имиња на колони" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Тип" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Default" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Врски кон" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Коментари" @@ -314,14 +314,14 @@ msgstr "Само податоци" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пред копирање" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" @@ -336,8 +336,8 @@ msgstr "Префрли се на копираната база на подато #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -363,7 +363,7 @@ msgid "Edit or export relational schema" msgstr "Релациона шема" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -689,7 +689,7 @@ msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -751,7 +751,7 @@ msgstr "Речник на податоци" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -830,12 +830,12 @@ msgstr "Проверка на табелата" msgid "Database Log" msgstr "База на податоци" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1175,7 +1175,7 @@ msgstr "Глобални привилегии" msgid "Removing Selected Users" msgstr "Избриши ги селектираните корисници" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1183,7 +1183,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Промени" @@ -1422,7 +1422,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1647,7 +1647,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1697,7 +1697,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1853,7 +1853,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2428,7 +2428,7 @@ msgstr "Клучот не е дефиниран!" msgid "Indexes" msgstr "Клучеви" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2465,7 +2465,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2773,18 +2773,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Табели" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2860,7 +2860,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2933,7 +2933,7 @@ msgstr "MySQL порака: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Објасни SQL" @@ -2945,11 +2945,11 @@ msgstr "Прескокни ги објаснувањата на SQL-от" msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Освежи" @@ -2958,7 +2958,7 @@ msgstr "Освежи" msgid "Skip Validate SQL" msgstr "Прескокни ја проверката на SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Провери SQL" @@ -3074,20 +3074,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3300,7 +3300,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3450,137 +3450,127 @@ msgid "Default display direction" msgstr "Опции за извоз на бази на податоци" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Преименувај ја базата на податоци во" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Можете да извршите:" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Ажурирање на следниот запис" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Прикажи својства" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Сочувај како податотека" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Кодна страна на податотеката:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Компресија" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3589,71 +3579,71 @@ msgstr "Компресија" msgid "Put columns names in the first row" msgstr "Стави ги имињата на полињата во првата редица" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Полињата се раздвоени со" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Escape карактер      " -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Замени NULL со" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Линиите се завршуваат со" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Линиите се завршуваат со" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel издание" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3661,400 +3651,400 @@ msgstr "Шаблон на име на податотека" msgid "Dump table" msgstr "%s табела" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Вклучи и коментар на табелата" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Коментар на табела" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Продолжен коментар на табелите" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Ознака на клучот" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-типови" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Релации" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Тип на извоз" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Препиши ги постоечките податотеки" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Шаблон на име на податотека" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Името на полето стави го во '" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Датуми на креирање/ажурирање/проверка" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Користи одложен внес" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Исклучи проверка на надворешни клучеви" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Игнорирај дупликати при внесување" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Тип на извоз" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Изврши извоз во трансакција" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Тип на извоз" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV формат" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Генерирај" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Увоз на податотека" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "Сервер" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Документација" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Број на страници:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Документација" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL упит" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL упит" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL упит" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL историја" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4062,288 +4052,288 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Статус" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Табела" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Користи текст поле" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Замени ги податоците во табелата со подаците од податотеката" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Стави ги имињата на полињата во првата редица" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Анализа на табелата" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4351,455 +4341,455 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Ограничување на ресурси" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Промени го редоследот во табелата" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Промени го името на табелата во " -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Нишки на поправка" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "Основен директориум на податоците" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Конекции" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Нема табела" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Дефрагментирај ја табелата" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Базата на податоци не постои" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "Избор на сервер" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4808,346 +4798,346 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "База на податоци" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "ID на серверот" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Анализа на табелата" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Поправка на табелата" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Избор на сервер" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Прикажувам коментари на колоните" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Дефрагментирај ја табелата" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Име" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Режим на автоматско опоравување" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "Прикажи табели" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Прикажи мрежа" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Прикажи комплетни упити" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Статистики за записите" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5155,28 +5145,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5186,91 +5176,91 @@ msgstr "" msgid "Password" msgstr "Лозинка" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Додади/избриши колона" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Default" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5278,56 +5268,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5335,13 +5325,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5361,47 +5351,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5579,9 +5569,8 @@ msgstr "Направи нова страница" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Име" @@ -5961,7 +5950,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Транформации на веб прелистувачот" @@ -6873,7 +6862,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7577,7 +7566,7 @@ msgstr "" msgid "Direction" msgstr "Направено" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Должина/Вредност*" @@ -7870,7 +7859,7 @@ msgstr "Содржина" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Атрибути" @@ -8182,7 +8171,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8199,7 +8188,7 @@ msgstr "" "'a','b','c'...
Ако ви треба обратна коса црта (\"\\\") или апостроф " "(\"'\") користите ги во escap форма (пример '\\\\xyz' или 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8207,13 +8196,13 @@ msgstr "" "За default вредност, внесете само една вредност, без коси црти или наводници " "во следниов облик: а" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Клуч" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8222,11 +8211,11 @@ msgstr "" "За листа на достапни опции на транформациите и нивните MIME-тип " "трансформации, кликнете на %sопис на трансформацијата%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Опции на трансформацијата" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8238,36 +8227,36 @@ msgstr "" "или апостроф (\"'\") во тие вредности, ставете обратна коса црта пред нив " "(пример '\\\\xyz' или 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "нема" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Примарен" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Текст клуч" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8276,28 +8265,28 @@ msgstr "" "Нема опис за оваа трансформација.
Ве молиме прашајте го авторот што ја " "направил %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додади %s полиња" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Морате да изберете барем една колона за приказ" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Вид на складиште" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Додади нов корисник" diff --git a/po/ml.po b/po/ml.po index 40d52987f7..83e19857c0 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-27 08:42+0200\n" "Last-Translator: \n" "Language-Team: Malayalam \n" @@ -65,7 +65,7 @@ msgstr "തിരയൂ" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -127,7 +127,7 @@ msgid "Database comment: " msgstr "വിവരശേഖര അഭിപ്രായം: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" @@ -137,7 +137,7 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -153,7 +153,7 @@ msgstr "നിര" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -165,7 +165,7 @@ msgstr "തരം" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -176,7 +176,7 @@ msgstr "ശൂന്യം" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "സ്വതേ" @@ -190,13 +190,13 @@ msgid "Links to" msgstr "കണ്ണികൾ" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "അഭിപ്രായങ്ങൾ" @@ -310,14 +310,14 @@ msgstr "വിവരം മാത്രം" msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "%s ചേർക്കുക" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -332,8 +332,8 @@ msgstr "" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -352,7 +352,7 @@ msgid "Edit or export relational schema" msgstr "" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -660,7 +660,7 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -722,7 +722,7 @@ msgstr "" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -797,12 +797,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1111,7 +1111,7 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1119,7 +1119,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "" @@ -1331,7 +1331,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1537,7 +1537,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1580,7 +1580,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1707,7 +1707,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2209,7 +2209,7 @@ msgstr "" msgid "Indexes" msgstr "" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2245,7 +2245,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2540,18 +2540,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2623,7 +2623,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2695,7 +2695,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "" @@ -2707,11 +2707,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "" @@ -2720,7 +2720,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "" @@ -2824,20 +2824,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3036,7 +3036,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3183,561 +3183,551 @@ msgid "Default display direction" msgstr "" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3745,277 +3735,277 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4023,436 +4013,436 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4461,325 +4451,325 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4787,28 +4777,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -4818,86 +4808,86 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4905,56 +4895,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -4962,13 +4952,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -4988,47 +4978,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5197,9 +5187,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "" @@ -5523,7 +5512,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "" @@ -6362,7 +6351,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7029,7 +7018,7 @@ msgstr "" msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "" @@ -7285,7 +7274,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "" @@ -7565,7 +7554,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7573,30 +7562,30 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -7604,59 +7593,59 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "" diff --git a/po/mn.po b/po/mn.po index 08a4ec2437..da72f6695b 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -64,7 +64,7 @@ msgstr "Хайх" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -126,7 +126,7 @@ msgid "Database comment: " msgstr "ӨС-ийн тайлбар: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Хүснэгтийн тайлбар" @@ -136,7 +136,7 @@ msgstr "Хүснэгтийн тайлбар" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -154,7 +154,7 @@ msgstr "Баганын нэрс" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -166,7 +166,7 @@ msgstr "Төрөл" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -177,7 +177,7 @@ msgstr "Хоосон" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Анхдагч" @@ -191,13 +191,13 @@ msgid "Links to" msgstr "Холбоос" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Тайлбар" @@ -315,14 +315,14 @@ msgstr "Зөвхөн өгөгдөл" msgid "CREATE DATABASE before copying" msgstr "хуулахын өмнө CREATE DATABASE" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Нэмэх %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" @@ -337,8 +337,8 @@ msgstr "Хуулагдсан ӨС руу шилжих" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -364,7 +364,7 @@ msgid "Edit or export relational schema" msgstr "Хамааралтай схем" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -689,7 +689,7 @@ msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -755,7 +755,7 @@ msgstr "Өгөгдлийн толь" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -830,12 +830,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1174,7 +1174,7 @@ msgstr "Онцгой эрхүүдийг дахин дуудах" msgid "Removing Selected Users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1182,7 +1182,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Засах" @@ -1428,7 +1428,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1655,7 +1655,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1704,7 +1704,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1865,7 +1865,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2440,7 +2440,7 @@ msgstr "Индекс тодорхойлогдоогүй!" msgid "Indexes" msgstr "Индексүүд" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2476,7 +2476,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2787,18 +2787,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Хүснэгт" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2879,7 +2879,7 @@ msgstr "Сервэрийн буруу индекс нь: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2951,7 +2951,7 @@ msgstr "MySQL хэлэх нь: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL тайлбар" @@ -2963,11 +2963,11 @@ msgstr "SQL тайлбарлахыг орхих" msgid "Without PHP Code" msgstr "PHP-кодгүй" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP-код үүсгэх" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Да.дуудах" @@ -2976,7 +2976,7 @@ msgstr "Да.дуудах" msgid "Skip Validate SQL" msgstr "SQL шалгалтыг алгасах" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL-ийг батлах" @@ -3092,20 +3092,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Бүтэц" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3317,7 +3317,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3468,135 +3468,125 @@ msgid "Default display direction" msgstr "Хамааралтай схем" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Хүснэгтийн ашиглалт" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Дараагийн мөрийг засах" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Онцлог харуулах" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Илгээх" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Тогтнол" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Шахалт" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3605,68 +3595,68 @@ msgstr "Шахалт" msgid "Put columns names in the first row" msgstr "Эхний мөрт талбаруудын нэрийг тавих" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Талбарыг хаасан" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Талбарыг нээсэн" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "NULL-ыг орлуулах нь" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Шугамыг төгсгөгч" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Шугамыг төгсгөгч" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-засвар" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3674,395 +3664,395 @@ msgstr "" msgid "Dump table" msgstr "%s хүснэгт(үүд)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Хүснэгтийн гарчиг холбогдсон" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Хүснэгтийн гарчиг" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Үргэлжилсэн хүснэгтийн гарчиг" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Label key" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-төрөл" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Хамаарал" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Гаргах төрөл" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Файл(ууд)-г дарж бичих" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Хүснэгт ба талбарын нэрийг буруу хашилтаар хаах" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL нийцтэй горим" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Үүсгэлт/Шинэчлэлт/Огноо шалгах" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Давталттай оруулалт хэрэглэх" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Оруулалтыг үл тоох" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Үүсгэгдсэн асуудлын хамгийн их урт" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Гаргах" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Хэлэлцээр дэх гаргалтыг хаах" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy #| msgid "Query results operations" msgid "Customize default options" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Бий болгох" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Сервэрүүд" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Баримт" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Хуудасны дугаар:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Баримт" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy #| msgid "Server variables and settings" msgid "SQL queries settings" msgstr "Сервэрийн утгууд болон тохиргоонууд" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL түүх" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4070,287 +4060,287 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Оруулсан файлын тогтнол" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "LOCAL түлхүүр үг хэрэглэх" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Эхний мөрт талбаруудын нэрийг тавих" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Хүснэгтийг задлах" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4358,448 +4348,448 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Хүснэгтийг эрэмбэлэлтээр өөрчлөх" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Хүснэгтийг да.нэрлэх" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Thread засах" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4808,343 +4798,343 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "өгөгдлийн сангийн нэр" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Хүснэгтийг задлах" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Баганын тайлбарыг харуулж байна" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Хүснэгт янзлах" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Баримтжуулал" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Авто сэргээх горим" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Relational schema" msgid "Show display direction" msgstr "Хамааралтай схем" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Тор харуулах" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5152,28 +5142,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5183,90 +5173,90 @@ msgstr "" msgid "Password" msgstr "Нууц үг" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Багана нэмэх/устгах" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Анхдагч" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5274,56 +5264,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5331,13 +5321,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5357,49 +5347,49 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV хэрэглэх нь LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy #| msgid "Database export options" msgid "Database export options" msgstr "ӨС гаргах сонголтууд" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV өгөгдлийг MS Excel-ээр" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5574,9 +5564,8 @@ msgstr "Хүснэгт үүсгэх" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Нэр" @@ -5970,7 +5959,7 @@ msgid "Hide" msgstr "Нуух" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Хөтчийн өөрчлөл" @@ -6875,7 +6864,7 @@ msgstr "CSV оруулалтад %d мөрөнд буруу талбарын т msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Хүснэгтийн нэр" @@ -7579,7 +7568,7 @@ msgstr "" msgid "Direction" msgstr "Шууд холбоос" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Урт/Утгууд*" @@ -7878,7 +7867,7 @@ msgstr "Агуулгын хүснэгт" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Атрибутууд" @@ -8187,7 +8176,7 @@ msgstr "Хүснэг хоосон үзэгдэж байна!" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8205,7 +8194,7 @@ msgstr "" "(\"'\") тавих шаардлагатай бол буруу ташуу зураасыг давхар хэрэглэ. (Ж: '\\" "\\xyz' эсвэл 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8213,13 +8202,13 @@ msgstr "" "Анхдагч утгаар энэ тогтнолыг ашиглан ташуу зураас, хашилтгүй ганц утга " "оруулна уу: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Индекс" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8228,11 +8217,11 @@ msgstr "" "Боломжтой өөрчлөлийн сонголтуудын жагсаалт ба тэдгээр MIME-төрлийн " "өөрчлөлүүдийн тулд, %sөөрчлөлийн тайлбар%s -д дарах" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Өөрчлөлийн сонголтууд" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8243,36 +8232,36 @@ msgstr "" "та буруу ташуу зургаас эсвэл дан хашилт тавихыг хүсвэл буруу ташуу зураасыг " "өмнө нь тавина уу. (Ж: '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Байхгүй" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Үндсэн" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Бүтэнбичвэр" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8280,28 +8269,28 @@ msgid "" msgstr "" "Энэ өөрчлөлтөд Тайлбаргүй нь идэвхтэй.
%s-ын зохиогчийг асууна уу." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s талбар(ууд) нэмэх" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Та багадаа нэг талбар нэм." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Агуулах хөдөлгүүр" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new User" msgid "+ Add a value" diff --git a/po/ms.po b/po/ms.po index 0a34682297..a6491282d7 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" @@ -62,7 +62,7 @@ msgstr "Cari" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -127,7 +127,7 @@ msgid "Database comment: " msgstr "Komen jadual" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Komen jadual" @@ -137,7 +137,7 @@ msgstr "Komen jadual" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -155,7 +155,7 @@ msgstr "Nama Kolum" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -167,7 +167,7 @@ msgstr "Jenis" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -178,7 +178,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Asal" @@ -192,13 +192,13 @@ msgid "Links to" msgstr "Pautan ke" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Komen" @@ -317,14 +317,14 @@ msgstr "Data sahaja" msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -339,8 +339,8 @@ msgstr "Tukar kepada pengkalan data yang di salin" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -366,7 +366,7 @@ msgid "Edit or export relational schema" msgstr "Skema Hubungan" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -691,7 +691,7 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -757,7 +757,7 @@ msgstr "Kamus Data" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -837,12 +837,12 @@ msgstr "Periksa Jadual" msgid "Database Log" msgstr "Pangkalan Data" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1172,7 +1172,7 @@ msgstr "Tiada Privilej" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1180,7 +1180,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Ubah" @@ -1413,7 +1413,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1635,7 +1635,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1685,7 +1685,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1837,7 +1837,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2409,7 +2409,7 @@ msgstr "Tiada indeks ditafrifkan!" msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2446,7 +2446,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2743,18 +2743,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Jadual-jadual" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2829,7 +2829,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2901,7 +2901,7 @@ msgstr "MySQL berkata: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Terangkan Kod SQL" @@ -2913,11 +2913,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "Tanpa Kod PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Cipta Kod PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "" @@ -2926,7 +2926,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Melangkau Pengesahan SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Mengesahkan SQL" @@ -3038,20 +3038,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3264,7 +3264,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3414,134 +3414,124 @@ msgid "Default display direction" msgstr "Statistik pangkalan data" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Penyenggaraan Jadual" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Paparkan Ciri-ciri" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Simpan sebagai fail" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Fail bagi set Aksara:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Mampatan" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3550,66 +3540,66 @@ msgstr "Mampatan" msgid "Put columns names in the first row" msgstr "Letakkan medan di baris pertama" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Medan disertai oleh" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Medan dilarikan oleh" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Baris ditamatkan oleh" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Baris ditamatkan oleh" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3617,397 +3607,397 @@ msgstr "" msgid "Dump table" msgstr "%s jadual" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 #, fuzzy msgid "Relations" msgstr "Operasi" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "Eksport" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Sertakan nama jadual dan medan dengan backquotes" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 #, fuzzy msgid "Use delayed inserts" msgstr "Penyelitan Lanjutan" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "Penyelitan Lanjutan" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "Eksport" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "data CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "General" msgstr "Dijana oleh" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Statistik pangkalan data" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "Pelayan" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Muka Surat:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentasi" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "kueri-SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "kueri-SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "kueri-SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "Skip Validate SQL" msgid "SQL Validator" msgstr "Melangkau Pengesahan SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4015,285 +4005,285 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Jadual" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "Tambah medan baru" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Ganti data jadual dengan fail" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Letakkan medan di baris pertama" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Analyze table" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4301,444 +4291,444 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alter table order by" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Tukarnama jadual ke" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Hubungan" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Tiada Jadual" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Tiada pangkalan data" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4747,342 +4737,342 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Pangkalan Data" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analyze table" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Baiki jadual" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Memaparkan Komen Kolum" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Penyataan" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "Automatically create versions" msgstr "Versi Pelayan" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Statistik pangkalan data" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "Papar jadual" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Papar grid" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Statistik Baris" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5090,28 +5080,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5121,91 +5111,91 @@ msgstr "" msgid "Password" msgstr "Katalaluan" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Namapengguna:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Tambah/Padam Kolum Medan" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Asal" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5213,56 +5203,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5270,13 +5260,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5296,48 +5286,48 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy msgid "Database export options" msgstr "Statistik pangkalan data" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV untuk sata MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5509,9 +5499,8 @@ msgstr "Cipta Halaman baru" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nama" @@ -5887,7 +5876,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "" @@ -6762,7 +6751,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7455,7 +7444,7 @@ msgstr "" msgid "Direction" msgstr "Cipta" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Panjang/Nilai*" @@ -7738,7 +7727,7 @@ msgstr "Kandungan" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atribut" @@ -8047,7 +8036,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8065,30 +8054,30 @@ msgstr "" "backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, " "backslashes kan ia (cth '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -8101,63 +8090,63 @@ msgstr "" "backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, " "backslashes kan ia (cth '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Tiada" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Utama" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Tekspenuh" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Tambah medan baru" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Tambah Pengguna Baru" diff --git a/po/nb.po b/po/nb.po index 44e496e516..809bfb7082 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" @@ -65,7 +65,7 @@ msgstr "Søk" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -129,7 +129,7 @@ msgid "Database comment: " msgstr "Database kommentar: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Tabellkommentarer" @@ -139,7 +139,7 @@ msgstr "Tabellkommentarer" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -155,7 +155,7 @@ msgstr "Kolonne" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -167,7 +167,7 @@ msgstr "Type" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -178,7 +178,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Standard" @@ -192,13 +192,13 @@ msgid "Links to" msgstr "Linker til" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Kommentarer" @@ -312,14 +312,14 @@ msgstr "Bare data" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Legg til %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" @@ -334,8 +334,8 @@ msgstr "Bytt til kopiert database" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -355,7 +355,7 @@ msgid "Edit or export relational schema" msgstr "Rediger eller eksporter relasjonsskjema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -668,7 +668,7 @@ msgid "Check tables having overhead" msgstr "Merk overheng" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -736,7 +736,7 @@ msgstr "Dataordbok" msgid "Tracked tables" msgstr "Overvåkede tabeller" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -811,12 +811,12 @@ msgstr "Overvåk tabell" msgid "Database Log" msgstr "Databaselogg" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Verdier for kolonnen \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Skriv inn hver verdi i separate felter." @@ -1169,7 +1169,7 @@ msgstr "Oppfrisker privilegiene" msgid "Removing Selected Users" msgstr "Fjern valgte brukere" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Lukk" @@ -1177,7 +1177,7 @@ msgstr "Lukk" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Rediger" @@ -1421,7 +1421,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1650,7 +1650,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1701,7 +1701,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1844,7 +1844,7 @@ msgstr "Maks kjøretid" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2374,7 +2374,7 @@ msgstr "Ingen indeks definert!" msgid "Indexes" msgstr "Indekser" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2412,7 +2412,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2729,18 +2729,18 @@ msgid "shared" msgstr "delt" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabeller" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2816,7 +2816,7 @@ msgstr "Ugyldig tjenerindeks: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2888,7 +2888,7 @@ msgstr "MySQL sa: " msgid "Failed to connect to SQL validator!" msgstr "Kunne ikke koble til SQL validerer!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Forklar SQL" @@ -2900,11 +2900,11 @@ msgstr "Ikke forklar SQL" msgid "Without PHP Code" msgstr "uten PHP kode" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Lag PHP kode" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Oppdater" @@ -2913,7 +2913,7 @@ msgstr "Oppdater" msgid "Skip Validate SQL" msgstr "Ikke teste SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Test SQL" @@ -3029,20 +3029,20 @@ msgid "Click to toggle" msgstr "Klikk for å velge" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3242,7 +3242,7 @@ msgid "Set value: %s" msgstr "Sett verdi: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Gjennopprett standard verdi" @@ -3405,102 +3405,90 @@ msgid "Default display direction" msgstr "Standard visningsretning" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] eller et tall som indikerer et " -"maksimalt grense for hvilken vertikal modell som er brukt" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Vis retning for endring/lage kolonner" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Fanen som vises når en database tas i bruk" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Standard databasefane" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Fanen som vises når en tjener tas i bruk" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Standard tjenerfane" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Fanen som vises når en tabell tas i bruk" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Standard tabellfane" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Vis binært innhold som heksadesimal som standard" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Vis binært innhold som HEX" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Vis databaser som en liste istedet for en nedfallsliste" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Vis databaser som en liste" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Vis tjenere som en liste istedet for en nedfallsliste" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Vis tjenere som en liste" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Tabellvedlikehold" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Rediger SQL spørringer i eget vindu" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Rediger i eget vindu" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Vis feilmeldinger" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Samle feilmeldinger" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Vis ikoner for advarsler, feil og info" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Ikon feil" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3508,205 +3496,205 @@ msgstr "" "Antall sekunder et skript har lov til å kjøre ([kbd]0[/kbd] for ingen " "begrensning)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Maks kjøretid" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Lagre som fil" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Filas tegnsett" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Kompresjon" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Sett inn kolonnenavn i første rad" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Kolonner omsluttet av" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Kolonner beskyttet med" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Erstatt NULL med" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Fjern CRLF tegn inne i kolonner" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Kolonner avsluttet med" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Linker avsluttet med" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel stil" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Databasenavnmal" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Tjenernavnmal" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Tabellnavnmal" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Dump tabell" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Inkluder tabelloverskrift" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Tabelloverskrift" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Fortsettet tabelloverskrift" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Merkelappnøkkel" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relasjoner" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Eksportmetode" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Lagre på tjener" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Skriv over eksisterende filer" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Husk filnavnmal" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Bruk venstre anførselstegn med tabell og kolonnenavn" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL kompatibilitetsmodus" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Opprettelse/Oppdaterings/Kontrolldato" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Bruk forsinkede innsettinger" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Slå av kontroll av fremmednøkler" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Bruk heksadesimal for BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Bruk ignore inserts" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Syntaks i bruk ved innsetting av data" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maksimum lengde av opprettet spørring" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Eksport type" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Inneslutt eksport i en transaksjon" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Eksport tid i UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Tving sikker tilkobling ved bruk av phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Tving SSL tilkobling" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3714,148 +3702,148 @@ msgstr "" "Sorteringsrekkefølge for elementer i en fremmednøkkel nedfallsboks; [kbd]" "content[/kbd] for refererte data, [kbd]id[/kbd] for nøkkelverdien" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Fremmednøkkelrekkefølge" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "En nedfallsboks vil bli brukt hvis færre elementer er tilstede" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Fremmednøkkelbegrensning" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Visningsmodus" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Endre visningsmodus" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Tilpass standardinstillinger" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV-data" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Utvikler" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Instillinger for phpMyAdmin utviklere" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Redigeringsmodus" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Endre redigeringsmodus" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Eksportinnstillinger" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Endre standard eksportinnstillinger" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Egenskaper" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Generell" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Angi noen vanlig brukte alternativer" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Importinnstillinger" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Endre standard importinnstillinger" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Import / eksport" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Set import and eksport mapper og komprimeringsinnstillinger" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Databasevisningsinnstillinger" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigasjonsramme" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Endre utseendet til navigasjonsrammen" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Tjenere" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Tjenervisningsinnstillinger" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Tabellvisningsinnstillinger" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Hovedramme" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Åpent Dokument" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Andre hovedinnstillinger" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Innstillinger som ikke passer andre steder" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Sidetitler" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3865,22 +3853,22 @@ msgstr "" "html#cfg_TitleTable]dokumentasjon[/a] for spesielle strenger som kan tas i " "bruk for å tilgang til spesialverdier." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Spørringsvindu" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Endre spørringsvinduinnstillinger" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Sikkerhet" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3888,23 +3876,23 @@ msgstr "" "Merk at phpMyAdmin er bare et brukergrensesnitt og dens egenskaper begrenser " "ikke MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Grunnleggende innstillinger" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Godkjenning" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Innstillinger godkjenning" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Tjenerinnstillinger" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3912,15 +3900,15 @@ msgstr "" "Avanserte tjenerinnstillinger, ikke endre disse hvis du ikke vet hva de er " "for" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Legg til tjenertilkoblingsparametre" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Konfigurasjonslager" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -3935,11 +3923,11 @@ msgstr "" "[a@../Documentation.html#linked-tables]lenkede-tabeller infrastruktur[/a] i " "dokumentasjonen" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Endringssporing" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 #, fuzzy #| msgid "" #| "Tracking of changes made in database. Requires configured PMA database." @@ -3949,44 +3937,44 @@ msgid "" msgstr "" "Sporing av endringer utført i databasen. PMA database må være konfigurert." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Endre eksportstandarder" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Endre importstandarder" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Endre navigasjonsrammen" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Endre hovedrammen" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL spørringer" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL spørringsboks" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Endre linker vist i SQL spørringsbokser" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL søkeinnstilinger" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL validator" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3994,45 +3982,45 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Oppstart" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Endre oppstartssiden" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Faner" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Velg hvordan du ønsker fanene skal fungere" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Tekstfelt" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Endre eksportstandarder" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Advarsler" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Slå av noen av advarslene fra phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4040,15 +4028,15 @@ msgstr "" "Slå på [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a]-komprimering for import " "og eksportoperasjoner" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Ekstra parametre for iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4056,11 +4044,11 @@ msgstr "" "Hvis påslått vil PMA forsette å behandle flerspørrings spørringer også hvis " "en av spørringene feiler" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignorer flere spørringsfeil" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4070,21 +4058,21 @@ msgstr "" "nærheten av tidsbegrensningen. Dette kan være en god måte å importere store " "filer, men den kan knekke transaksjoner." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Delvis import: tillat avbrudd" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Ikke avbryt under INSERT feil" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Erstatt tabell med filen" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4092,92 +4080,92 @@ msgstr "" "Standard format, merk at denne lista avhenger av lokasjon (database, tabell) " "og bare SQL er alltid tilgjengelig" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Importfilformat" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Bruk LOCAL nøkkelord" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Kolonnenavn i første rad" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Ikke importer tomme rader" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Importer valuta ($5.00 til 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importer prosenter som heltall (12.00% til .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Antall poster(spørringer) å hoppe over fra start" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Delvis import: hopp over spørringer" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ikke bruk AUTO_INCREMENT for nullverdier" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Initiell tilstand for slidere" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Hvor mange rader som kan settes inn på en gang" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Antall innsettingsrader" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Mål for hurtigtilgangsikon" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Vis logo i venstre ramme" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Vis logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Vis tjenervalg øverst i venstre ramme" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Vis tjenerutvalg" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Vis minimum antall tabeller i filterboks" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Streng som skiller databaser i forskellige trenivåer" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Database treskilletegn" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4185,39 +4173,39 @@ msgstr "" "Kun i hurtigversjon; vis databaser i et tre (bestemmes av skilletegnet " "definert nedenfor)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Vis databaser i et tre" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Slå av denne hvis du ønsker å kunne se alle databaser på en gang" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Bruk hurtigversjon" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Maks tabelltredybde" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Streng som skiller tabeller i forskellige trenivåer" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Tabelltreseparator" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL hvor logoen i navigasjonsrammen skal peke til" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logo link URL" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4225,50 +4213,50 @@ msgstr "" "Åpne den linkede siden i hovedvinduet ([kbd]main[/kbd]) eller i en ny en " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logo link mål" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Uthev tjener under musmarkøren" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Aktiver utheving" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Maks antall tabeller vist i tabellista" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Ikke overvåkede tabeller" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Bruk mindre grafisk tunge faner" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Hurtigfaner" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "Maks antall tegn brukt når en SQL spørring er framvist" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Begrens kolonne tegn" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4278,11 +4266,11 @@ msgstr "" "ellers bare for den aktuelle tjeneren. Sett denne til FALSE gjør det lett å " "glemme å logge ut fra andre tjenere når du bruker flere." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Slett alle cookies ved utlogging" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4290,11 +4278,11 @@ msgstr "" "Definerer om forrige innlogging skal husker eller ikke i cookie " "autentiseringsmodus" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Husk brukernavn" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4306,52 +4294,52 @@ msgstr "" "sessjon, det vil si at den vil bli slettet så fort du lukker " "nettleservinduet. Dette er anbefalt for ikke sikre brukermiljøer." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Innloggings cookie lagring" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Definer hvor lenge (i sekunder) en innloggings cookie skal være gyldig" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Innloggings cookie gyldighet" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Dobbel størrelse i tekstområde for LONGTEXT kolonner" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Større tekstområde for LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Bruk ikoner på hovedsiden" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Maks antall tegn brukt når en SQL spørring er framvist" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Maks lengde SQL" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Brukere kan ikke angi en høyere verdi" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "Maks antall databases vist i venstre ramme og databaselista" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Maks antall databaser" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4361,19 +4349,19 @@ msgstr "" "inneholder flere rader vil "Forrige" og "Neste" linker " "bli vist." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Maks antall rader som kan framvises" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Maks antall tabeller vist i tabellista" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Maks antall tabeller" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4381,11 +4369,11 @@ msgstr "" "Slå av forvalgt advarsel som blir vist hvis mcrypt mangler ved " "informasjonskapsel autentisering" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt advarsel" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4393,45 +4381,45 @@ msgstr "" "Maks antal byte et skript har lov til å bruke, f.eks. [kbd]32M[/kbd] ([kbd]0" "[/kbd] for ingen begrensning)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Minnetak" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links" msgstr "Dette er rediger, innsmettet rediger, kopier og slettede lenker" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Bruk naturlig rekkefølge for å sortere tabell- og databasenavn" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Normal rekkefølge" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Bruk bare ikoner, bare tekst eller begge deler" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Ikonnavigasjonsmeny" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Bruk GZip utbuffring for økt hastighet i HTTP overføringer" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip utbuffring" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4439,42 +4427,42 @@ msgstr "" "[kbd]SMART[/kbd] - dvs. synkende rekkefølge for felter av typen TIME, DATE, " "DATETIME og TIMESTAMP, ellers stigende rekkefølge" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Standard sorteringsrekkefølge" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Bruk vedvarende forbindelser til MySQL databasen" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Vedvarende forbindelser" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Ikoniske tabelloperasjoner" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Ikke tillat BLOB eller BLOB og BINARY kolonner å bli redigert" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Beskytt binære kolonner" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -4487,128 +4475,128 @@ msgstr "" "Slå på hvis du ønsker DB-basert spørringshistorie (trenger pmadb). Hvis " "avslått, vil JS-rutiner vise spørringshistorien (tapt ved lukking av vindu)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanent spørringshistorie" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Hvor mange spørringer lagres" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Spørringshistorielengde" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Fanen som vises når et nytt spørringsvindu åpnes" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Standard spørringsvindufane" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Høyde på spørringsvindu" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Spørringsvindu" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Bredde på spørringsvindu" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Velg hvilken funksjon som vil bli brukt for karaktertegnsettskonverteringer" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Rekodingsmotor" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Endre tabellens navn" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Gjenta topptekst" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Mappe for eksporter kan lagres på tjeneren" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Lagringsmappe" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "La stå tom hvis ikke brukt" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Rekkefølge for vertsautentisering" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "La stå tom for standard" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Vertsautentiseringsregler" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Tillat innlogging uten passord" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Tillat innlogging som root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm navn for visning ved bruk av HTTP Auth" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4617,19 +4605,19 @@ msgstr "" "Stien til konfigfila for [a@http://swekey.com]SweKey hardware authentication" "[/a] (ikke lokalisert i din dokumentrot; foreslått: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey config fil" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Autentiseringsmetode som skal brukes" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Autentiseringstype" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4637,11 +4625,11 @@ msgstr "" "La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/bookmark]bokmerke[/a]" "støtte, anbefalt: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Bokmerketabell" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4649,31 +4637,31 @@ msgstr "" "La stå tom for ingen kolonnekommentarer/mime typer, anbefalt: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Kolonneinformasjonstabell" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Komprimer tilkoblingen til MySQL tjeneren" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Komprimer tilkobling" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Hvordan koble til tjener, behold tcp hvis usikker" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Tilkoblingstype" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Kontrollbrukerpassord" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4682,30 +4670,30 @@ msgstr "" "informasjon tilgjengelig på [a@http://wiki.phpmyadmin.net/pma/controluser]" "wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Kontrollbruker" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Tell tabeller ved visning av databaseliste" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Tell tabeller" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" "La stå tom for ingen Designer støtte, anbefalt: [kbd]designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Designertabell" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4713,70 +4701,70 @@ msgstr "" "Mer informasjon på [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] og [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Slå av bruk av INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Hvilken PHP modul som skal brukes, bruk mysqli hvis støttet" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Bruk PHP modul" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Skjul databaser som matcher regular expression (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Skul databaser" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL spørringshistorietabell" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Vertsnavn hvor MySQL tjeneren kjører" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Tjenervertsnavn" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Logg ut URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Maks antall tabeller vist i tabellista" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Forsøk å koble til uten passord" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Koble til uten passord" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -4791,29 +4779,29 @@ msgstr "" "Du kan bruke MySQL jokertegn (% and _), escape dem hvis du ønsker å bruke " "dem direkte, f.eks. bruk 'my\\_db' og ikke 'my_db'" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Vis kun opplistede databaser" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "La stå tom om du ikke skal bruke config autentisering" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Passord for config autentisering" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF schema: sidetabell" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4823,19 +4811,19 @@ msgstr "" "wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for komplett informasjon. La stå " "blank for å slå av. Anbefalt: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Ddatabasenavn" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Porten som MySQL tjeneren lytter på, la stå tom for standard verdi" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Tjenerport" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -4846,13 +4834,13 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Husk brukernavn" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4860,19 +4848,19 @@ msgstr "" "La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/relation]relasjonslink" "[/a]støtte, anbefalt: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Relasjonstabell" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "SQL kommando for å hente liste over databaser" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES kommando" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4880,41 +4868,41 @@ msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/" "a] for et eksempel" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Signon sesjonsnavn" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Sokkel som MySQL tjeneren lytter på, la stå tom for standard verdi" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Tjenersokkel" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Slå på SSL for tilkobling til MySQL tjener" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Bruk SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF schema: tabellkoordinater" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4922,11 +4910,11 @@ msgstr "" "Tabell for beskrivelse av visningskolonner, la stå tom for ingen støtte; " "anbefalt: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Visningskolonnetabell" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -4937,13 +4925,13 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmenter tabell" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4951,11 +4939,11 @@ msgstr "" "Om en DROP DATABASE IF EXISTS spørring skal bli lagt til som første linje i " "loggen når oppretter en database." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Legg til DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4963,11 +4951,11 @@ msgstr "" "Om en DROP TABLE IF EXISTS spørring vil bli lagt til som første linje til " "loggen når oppretter en tabell." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Legg til DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4975,31 +4963,31 @@ msgstr "" "Om en DROP VIEW IF EXISTS spørring vil bli lagt til som første linje i " "loggen når opprettes en visning." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Legg til DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Definerer lista med spørringer autoopprettinga bruker for nye versjoner." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Spørringer som skal spores" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "SQL spørringssporingstabell" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -5007,11 +4995,11 @@ msgstr "" "Om sporingsmekanismen oppretter versjoner for tabeller og visninger " "automatisk." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Automatisk opprette versjoner" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -5022,15 +5010,15 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Bruker for config autentisering" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -5038,11 +5026,11 @@ msgstr "" "Slå av hvis du vet at dine pma_* tabeller er oppdaterte. Denne forhindrer " "kompabilitetssjekk og øker ytelsen" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Full kontroll" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -5050,19 +5038,19 @@ msgstr "" "En brukervennlig beskrivelse av denne tjeneren. La stå tom for visning av " "vertsnavn istedet." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Fult navn for denne tjeneren" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Avgjør om en bruker får en "vis alle (rader)" knapp" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Tillat visning av alle rader" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5072,55 +5060,55 @@ msgstr "" "autentiseringsmodus siden passordet er hardkodet i konfigurasjonsfila; dette " "begrenser ikke muligheten til å utføre samme kommando direkte" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Vis passordendringsskjema" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Vis opprett database skjema" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "Standard visningsretning" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Vis felttyper" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Vis funksjonsfelter i rediger/sett inn modus" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Vis funksjonsfelter" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Vis rutenett" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5128,31 +5116,31 @@ msgstr "" "Vis link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "resultat" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Vis phpinfo() link" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Vis detaljert MySQL tjenerinformasjon" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Definer om SQL spørringer generert av phpMyAdmin skal vises" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Vis SQL spørringer" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "Tillat visning av database og tabellstatistikk (f.eks. lagringsbruk)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Vis statistikk" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5160,11 +5148,11 @@ msgstr "" "Hvis verktøytips er påslått og en databasekommentar er definert vil denne " "bytte om på kommentar og det reelle navnet" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Vis databasekommentaren istedet for dens navn" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5176,29 +5164,29 @@ msgstr "" "direktivet, så bare mappen et kalt lik aliaset, selve tabellnavnet forblir " "uendret" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Vis tabellkommentar istedet for dens navn" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Vis tabellkommentarer i verktøytips" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Merk tabeller i bruk og gjør det mulig å vise databaser med låste tabeller" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Ignorer låste tabeller" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5208,28 +5196,28 @@ msgstr "" msgid "Password" msgstr "Passord" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Brukernavn" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5237,63 +5225,63 @@ msgstr "" "Foreslå et databasenavn i "Opprett Database" skjemaet (hvis mulig) " "eller behold tekstfeltet tomt" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Foreslå nytt databasenavn" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR textarea kolonner" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR textarea rader" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Forvalgt tittel" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Navn på nettleser når en tjener er valgt" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5305,37 +5293,37 @@ msgstr "" "Forwarded-For) header som kommer fra mellomlager 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste over godkjente mellomlager for IP allow/deny" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Mappe på tjeneren hvor du kan laste opp filer for import" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Opplastingsmappe" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Gjør det mulig å søke i hele databasen" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Bruk databasesøk" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5345,19 +5333,19 @@ msgstr "" "import.lib.php for standarder for hvor mange spørringer en flerutsagn " "spørringer kan inneholde." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Utførlig flere utsagn" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Sjekk for siste versjon" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5365,7 +5353,7 @@ msgstr "" msgid "Version check" msgstr "Versjonskontroll" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5373,7 +5361,7 @@ msgstr "" "Slå på [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a]-" "komprimering for import og eksportoperasjoner" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5397,47 +5385,47 @@ msgstr "Rekkefølge for vertsautentisering" msgid "Signon authentication" msgstr "Rekkefølge for vertsautentisering" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV med LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document regneark" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Egendefinert" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Databaseeksportinnstillinger" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV for MS Excel data" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document tekst" @@ -5613,9 +5601,8 @@ msgstr "Opprett tabell" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Navn" @@ -5986,7 +5973,7 @@ msgid "Hide" msgstr "Skjul" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Nettvisertransformasjon" @@ -6921,7 +6908,7 @@ msgstr "Ugyldig antall kolonner i CSV importen i linje %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Tabellnavn" @@ -7648,7 +7635,7 @@ msgstr "" msgid "Direction" msgstr "Direkte linker" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Lengde/Sett*" @@ -7957,7 +7944,7 @@ msgstr "Innholdsfortegnelse" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Attributter" @@ -8258,7 +8245,7 @@ msgstr "Tabellen ser ut til å være tom!" msgid "Tracking of %s.%s is activated." msgstr "Overvåkning av %s.%s er aktivert." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8270,7 +8257,7 @@ msgstr "" "\") eller en enkel apostrof (\"'\") blant disse verdiene, skriv en skråstrek " "foran (eks. '\\\\xyz' eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8278,13 +8265,13 @@ msgstr "" "Sett inn en enkelt verdi for standard verdier uten skråstrek, anførselstegn " "eller annen "escaping" med dette formatet: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8293,11 +8280,11 @@ msgstr "" "For en liste over tilgjengelige transformasjonsvalg, klikk på %" "stransformasjonsbeskrivelser%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Transformasjonsvalg" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8309,34 +8296,34 @@ msgstr "" "(\"'\") blant disse verdiene så sett en skråstrek foran (eks. '\\\\xyz' " "eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Ingen" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Som definert:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primær" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Fulltekst" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8345,25 +8332,25 @@ msgstr "" "Ingen beskrivelse er tilgjengelig for denne transformasjonen.
Spør " "forfatteren hva %s gjør." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Legg til %s kolonne(r)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Du må sette inn minst en kolonne." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Lagringsmotor" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Partisjonsdefinisjon" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "+ Add a new value" msgid "+ Add a value" @@ -13397,6 +13384,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] eller et tall som indikerer et " +#~ "maksimalt grense for hvilken vertikal modell som er brukt" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Vis retning for endring/lage kolonner" + #~ msgid "Create table on database %s" #~ msgstr "Opprett ny tabell i database %s" diff --git a/po/nl.po b/po/nl.po index b2f1a8bb75..cd77d185eb 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-06-04 15:19+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" @@ -65,7 +65,7 @@ msgstr "Zoeken" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -129,7 +129,7 @@ msgid "Database comment: " msgstr "Database opmerking: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Tabelopmerkingen" @@ -139,7 +139,7 @@ msgstr "Tabelopmerkingen" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -155,7 +155,7 @@ msgstr "Kolom" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -167,7 +167,7 @@ msgstr "Type" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -178,7 +178,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Standaardwaarde" @@ -192,13 +192,13 @@ msgid "Links to" msgstr "Verwijst naar" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Opmerkingen" @@ -312,14 +312,14 @@ msgstr "Alleen data" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE voor het kopiëren" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Voeg %s toe" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT waarde toe" @@ -334,8 +334,8 @@ msgstr "Overschakelen naar de gekopieerde database" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -356,7 +356,7 @@ msgid "Edit or export relational schema" msgstr "Bewerk of exporteer relationeel schema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -670,7 +670,7 @@ msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -732,7 +732,7 @@ msgstr "Data Woordenboek" msgid "Tracked tables" msgstr "Tabellen met tracker" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -807,12 +807,12 @@ msgstr "Tabel tracken" msgid "Database Log" msgstr "Database-log" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Waarden voor kolom \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Plaats elke waarde in een log veld." @@ -1164,7 +1164,7 @@ msgstr "Bezig de privileges te verversen" msgid "Removing Selected Users" msgstr "Geselecteerde gebruikers worden verwijderd" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Sluiten" @@ -1172,7 +1172,7 @@ msgstr "Sluiten" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Wijzig" @@ -1416,7 +1416,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1645,7 +1645,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1696,7 +1696,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1831,7 +1831,7 @@ msgstr "Maximale uitvoertijd" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2360,7 +2360,7 @@ msgstr "Geen index gedefinieerd!" msgid "Indexes" msgstr "Indexen" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2398,7 +2398,7 @@ msgstr "" "De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden " "verwijderd." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2713,18 +2713,18 @@ msgid "shared" msgstr "gedeeld" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabellen" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2801,7 +2801,7 @@ msgstr "Ongeldige serverindex: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2873,7 +2873,7 @@ msgstr "MySQL retourneerde: " msgid "Failed to connect to SQL validator!" msgstr "Er kan geen verbinding worden gemaakt met de SQL-validator!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Verklaar SQL" @@ -2885,11 +2885,11 @@ msgstr "Uitleg SQL overslaan" msgid "Without PHP Code" msgstr "zonder PHP-Code" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Genereer PHP-Code" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Vernieuw" @@ -2898,7 +2898,7 @@ msgstr "Vernieuw" msgid "Skip Validate SQL" msgstr "SQL-validatie overslaan" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Valideer SQL" @@ -3016,20 +3016,20 @@ msgid "Click to toggle" msgstr "Klik om te selecteren" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Structuur" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3230,7 +3230,7 @@ msgid "Set value: %s" msgstr "Zet waarde op: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Herstel standaard waarde" @@ -3396,103 +3396,91 @@ msgid "Default display direction" msgstr "Standaard weergave richting" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] of een getal dat aangeeft tot " -"hoeveel velden de verticale weergave moet worden toegepast" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Weergave richting voor toevoegen/bewerken van kolommen" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Het tabblad dat wordt getoond na het openen van een database" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Standaard database tabblad" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Het tabblad dat wordt getoond na het openen van een server" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Standaard server tabblad" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Het tabblad dat wordt getoond na het openen van een tabel" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Standaard tabel tabblad" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Toon binaire-inhoud standaard als HEX" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Toon binaire-inhoud als HEX" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Toon een database overzicht als een lijst in plaats van een afrolmenu" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Toon databases als een lijst" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Toon een server overzicht als een lijst in plaats van een afrolmenu" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Toon servers als een lijst" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Tabelonderhoud" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Bewerk SQL-queries in popup venster" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Bewerk in venster" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Toon foutmeldingen" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Verzamel foutmeldingen" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" "Toon iconen voor waarschuwingen, foutmeldingen en informatieve berichten" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Foutmeldingen met iconen" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3500,206 +3488,206 @@ msgstr "" "Stel hier het maximale aantal seconden in dat een script mag gebruiken om te " "worden uitgevoerd ([kbd]0[/kbd] voor geen limiet)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Maximale uitvoertijd" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Opslaan als bestand" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Karakertset voor het bestand" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Opmaak" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Compressie" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Plaats veldnamen in de eerste rij" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Velden ingesloten door" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Velden ontweken door" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Vervang NULL door" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Verwijder CRLF tekens uit veld-waarden" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Velden beëindigd door" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Regels beëindigd door" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel editie" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Database naam template" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Server naam template" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Tabel naam template" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Dump tabel" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Voeg tabeltitel toe" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Tabeltitel" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Vervolgde tabeltitel" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Labelsleutel" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relaties" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Export methode" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Opslaan op server" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Overschrijf bestaand(e) bestand(en)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Herinner bestandsnaam template" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Gebruik backticks (`) bij tabel- en kolomnamen" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL-compatibiliteits mode" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "CREATE TABLE opties:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Creatie/Update/Controleer datum" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Gebruik vertraagde inserts" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "controle op vreemde sleutels uitschakelen" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Gebruik hexadecimaal voor BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Gebruik 'INSERT IGNORE'" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Syntax voor insert opdrachten" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maximale lengte van de gemaakte query" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Export type" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Sluit de export in een transactie" # UTC = Universal Time Zone, UTC laten staan. -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Exporteer tijd in UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Dwing een beveiligde verbinding af tijdens het gebruik van phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Beveiligde verbinding (HTTPS) afdwingen" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3707,148 +3695,148 @@ msgstr "" "Sorteer volgorde van elementen in een vreemdesleutel afrolmenu; [kbd]content" "[/kbd] is de gerefereerde data, [kbd]id[/kbd] is de sleutelwaarde" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Vreemdesleutel afrolmenu sortering" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Een afrolmenu wordt gebruikt indien er minder items beschikbaar zijn" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Vreemdesleutel limiet" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Verkennen-mode" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Aanpassen verkennen-mode" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Aanpassen standaard opties" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV gegevens" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Ontwikkelaar" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Instellingen voor phpMyAdmin ontwikkelaars" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Wijzig-mode" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Aanpassen wijzig-mode" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Export standaarden" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Aanpassen standaard export opties" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Opties" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Algemeen" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Enkele veel gebruikte opties" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Import opties" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Aanpassen standaard importeer opties" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Importeer / exporteer" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Aanpassen importeer- en exporteer-directories en compressie-opties" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Weergave opties voor databases" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigatieframe" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Weergave opties voor het navigatieframe" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servers" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Weergave opties voor servers" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Weergave opties voor tabellen" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Hoofdframe" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Overige instellingen" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Instellingen die onder geen andere categorie pasten" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Paginatitels" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3857,22 +3845,22 @@ msgstr "" "Browser titel balk tekst. Zie [a@Documentation.html#cfg_TitleTable]" "documentatie[/a] voor bruikbare codes." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Query-venster" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Aanpassen query-venster opties" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Beveiliging" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3880,23 +3868,23 @@ msgstr "" "Bedenk dat phpMyAdmin enkel een gebruikersinterface is, en dat zijn " "functionaliteit MySQL niet beperkt" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Basis instellingen" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Authenticatie" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Authenticatie instellingen" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Server configuratie" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3904,15 +3892,15 @@ msgstr "" "Geavanceerde serverinstellingen, wijzig deze alleen wanneer u de werking " "begrijpt" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Geef de server verbindingsparameters" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Configuratie opslag" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3922,11 +3910,11 @@ msgstr "" "extra functionaliteit, zie [a@Documentation.html#linked-tables]phpMyAdmin " "configuratie opslag[/a] in de documentatie" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Wijzigingen bijhouden" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3934,44 +3922,44 @@ msgstr "" "Bijhouden van wijzigingen in de database. Dit vereist een geconfigureerde " "phpMyAdmin configuratie opslag." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Aanpassen export opties" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Aanpassen importeer standaarden" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Aanpassen navigatieframe" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Aanpassen hoofdframe" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL-queries" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL-query veld" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Aanpassen van links getoond in de SQL-query vensters" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL-query instellingen" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL-Validator" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3983,43 +3971,43 @@ msgstr "" "[a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 " "Upright Database Technology. Alle rechten voorbehouden.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Beginpagina" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Aanpassen beginpagina" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Tabbladen" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Aanpassen van tabblad functioneren" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Tekstvelden" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Tekstvelden aanpassen" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Waarschuwingen" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Schakel enkele waarschuwingen uit die getoond worden door phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4027,15 +4015,15 @@ msgstr "" "Gebruik [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compressie voor import " "en export operaties" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Extra parameters voor iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4043,11 +4031,11 @@ msgstr "" "Indien ingeschakeld gaat phpMyAdmin door met het uitvoeren van queries als " "een query uit een meervoudige opdracht een fout oplevert" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Negeer foutmeldingen bij meervoudige statements" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4057,21 +4045,21 @@ msgstr "" "tijdslimiet nadert. Dit kan nuttig zijn bij het importeren van grote " "bestanden, maar kan transacties verstoren." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Gedeeltelijke import: onderbreken toestaan" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Breek een handeling niet af bij een INSERT-fout" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Vervang tabelgegevens door het bestand" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4079,88 +4067,88 @@ msgstr "" "Standaard formaat; deze lijst is afhankelijk van de locatie (database, " "tabel), enkel SQL is altijd beschikbaar" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Formaat van het geïmporteerde bestand" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Gebruik het LOCAL sleutelwoord" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Kolomnamen in eerste rij" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Lege rijen niet importeren" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Valuta importeren ($5.00 naar 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Percentages als decimalen importeren (12.00% naar .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Aantal queries die moeten worden overgeslagen vanaf het begin" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Gedeeltelijke import: queries overslaan" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Gebruik geen AUTO_INCREMENT voor 0-waarden" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Initiële waarde van schuif-indexen" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Hoeveel rijen gelijktijdig kunnen worden ingevoegd" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Aantal ingevoegde rijen" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Doel van snel-icoon" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Toon logo in linker frame" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Toon logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Toon serverkeuze bovenaan het linker frame" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Toon serverkeuze" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Het minimale aantal tabellen waarbij een filterveld wordt getoond" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Teken(reeks) dat de boomdiepte aangeeft in databasenamen" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Database boomstructuur scheidingsteken" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4168,39 +4156,39 @@ msgstr "" "Enkel de lichte versie; toon databases als een boomstructuur " "(scheidingsteken zoals hieronder aangegeven)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Toon databases als een boom" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Schaken dit uit wanneer u alle databases in een keer wil zien" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Gebruik lichte versie" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Maximum tabel boomstructuur diepte" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Teken(reeks) dat de boomdiepte aangeeft in tabelnamen" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Tabel boomstructuur scheidingsteken" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL van het logo in het navigatie frame" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logo link URL" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4208,48 +4196,48 @@ msgstr "" "Open de pagina in het hoofdvenster ([kbd]main[/kbd]) of in een nieuwe ([kbd]" "new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logo link bestemming" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Markeer server onder de muispijl" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Markeren inschakelen" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" "Het maximum aantal recent gebruikte tabellen dat wordt getoond; vul 0 in om " "uit te schakelen" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Recent gebruikte tabellen" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Gebruik grafisch minder intensieve tabbladen" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Lichte tabbladen" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Maximaal aantal karakters dat wordt getoond in een niet numerieke kolom bij " "het bekijken van query resultaten" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Beperk lengte van veld weergave" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4260,11 +4248,11 @@ msgstr "" "meerdere servers wordt gewerkt en dit niet is ingeschakeld kan het snel " "gebeuren dat u vergeet om uit te loggen voor een van de servers." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Delete alle cookies bij het uitloggen" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4272,11 +4260,11 @@ msgstr "" "Geeft aan of de laatst gebruikte gebruikersnaam moet worden herinnerd " "wanneer u geen gebruik maakt van de cookie authenticatie methode" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Herinner gebruikersnaam" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4288,55 +4276,55 @@ msgstr "" "huidige sessie, en vervalt wanneer de browser wordt afgesloten. Dit is aan " "te raden voor niet vertrouwde omgevingen." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Inlog cookie opslag" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Definieer hoelang (in seconden) een inlog cookie geldig blijft" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Inlog cookie geldigheid" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Dubbele grootte van tekstveld voor LONGTEXT kolommen" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Groter tekstveld voor LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Gebruik iconen op hoofdpagina" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" "Maximaal aantal karakters dat wordt gebruikt bij het tonen van een SQL-query" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Maximaal getoonden SQL lengte" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Gebruiker kan geen hogere waarde instellen" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Het maximale aantal databases dat wordt getoond in het linker frame en de " "database lijst" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Maximum aantal databases" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4346,19 +4334,19 @@ msgstr "" "set. Indien de resultaat set meer rijen bevat worden "Volgende" en " ""Vorige" links getoond." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Maximum aantal te tonen rijen" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Het maximum aantal tabellen dat wordt getoond in de tabellen lijst" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Maximum aantal tabellen" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4366,11 +4354,11 @@ msgstr "" "Schakel de standaard waarschuwing uit als mcrypt ontbreekt voor cookie " "authenticatie" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt waarschuwing" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4378,46 +4366,46 @@ msgstr "" "Het aantal bytes aan geheugen dat een script maximaal mag gebruiken, " "bijvoorbeeld [kbd]32M[/kbd] ([kbd]0[/kbd] voor geen limiet)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Geheugen limiet" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links" msgstr "Dit zijn Bewerken, Inline bewerken, Kopieer en Delete links" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Waar de tabelrij links getoond worden" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" "Gebruik natuurlijke volgorde voor het sorteren van tabel en database namen" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Natuurlijke volgorde" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Gebruik enkel iconen, enkel tekst of beide" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Icoon gebruik in navigatie balk" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "gebruik GZip uitvoer buffering voor het versnellen van HTTP verkeer" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip uitvoer buffering" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4425,19 +4413,19 @@ msgstr "" "[kbd]SMART[/kbd] - op aflopende volgorde voor velden van het type TIME, " "DATE, DATETIME en TIMESTAMP, oplopend voor overige velden" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Standaard sorteer volgorde" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Gebruik persistente connecties voor MySQL databases" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Persistente connecties" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4446,23 +4434,23 @@ msgstr "" "Schakel de waarschuwing uit op de database details Structuur pagina als een " "benodigde tabel voor phpMyAdmin configuratie opslag niet gevonden kan worden" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin configuratie opslag tabellen ontbreken" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Icoon gebruik bij tabel bewerkingen" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Blokkeer het bewerken van 'BLOB' en 'BINARY' velden" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Bescherm binaire velden" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4473,122 +4461,122 @@ msgstr "" "worden JS-routines gebruikt om query geschiedenis te tonen (deze gaat " "verloren bij het sluiten van het venster)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanente query geschiedenis" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Hoeveel queries er worden bewaard in de geschiedenis" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Query geschiedenis lengte" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Tabblad dat wordt getoond bij het openen van een nieuw query-venster" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Standaard query-venster tabblad" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Query-vensterhoogte (in pixels)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Query-vensterhoogte" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Query-vensterbreedte (in pixels)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Query-vensterbreedte" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Selecteer welke functies worden gebruikt om karakterset conversies uit te " "voeren" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Hercoderings engine" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "Bij het bekijken van tabellen, wordt de sorteervolgorde onthouden" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Onthoud de tabelsortering" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Herhaal de kopregel elke X cellen, [kbd]0[/kbd] schakelt deze functie uit" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Herhaal kopregels" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Toon helpknop in plaats van Documentatie tekst" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Toon helpknop" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Directory op de server waar exports kunnen worden opgeslagen" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Opslag directory" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Laat dit veld leeg indien u het niet wenst te gebruiken" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Machine autorisatie volgorde" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Laat dit veld leeg om de standaardwaarde te gebruiken" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Host autorisatie regels" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Inloggen zonder wachtwoord toestaan" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Root login toestaan" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm naam om weer te geven tijdens HTTP Auth" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4598,19 +4586,19 @@ msgstr "" "hardware authenticatie[/a] (niet binnen de document root directory van uw " "webserver; suggestie: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey configuratiebestand" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "De te gebruiken authenticatie methode" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Authenticatie type" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4618,11 +4606,11 @@ msgstr "" "Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/bookmark]" "bookmarks[/a] te gebruiken, suggestie: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Bookmark tabel" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4630,31 +4618,31 @@ msgstr "" "Laat dit veld leeg om geen kolom commentaren en mimetypes te ondersteunen, " "suggestie: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Kolom informatie tabel" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Comprimeer verbinding naar de MySQL-server" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Comprimeer verbinding" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Hoe te verbinden met de server, gebruik bij twijfel [kbd]tcp[/kbd]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Verbindingstype" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Controle gebruiker wachtwoord" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4662,19 +4650,19 @@ msgstr "" "Een speciale MySQL gebruiker met beperkte rechten, zie de [a@http://wiki." "phpmyadmin.net/pma/controluser]wiki[/a] voor meer informatie" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Controle gebruiker" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Tel het aantal tabellen bij het weergeven van een database lijst" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Tel tabellen" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4682,11 +4670,11 @@ msgstr "" "Laat dit veld leeg om de Designer niet te gebruiken, suggestie: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Designer tabel" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4694,30 +4682,30 @@ msgstr "" "Zie voor meer informatie: [a@http://sf.net/support/tracker.php?aid=1849494]" "PMA bug tracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Maak geen gebruik van INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Welke PHP-extensie er gebruikt zal worden; gebruik mysqli waar mogelijk" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "PHP-extensie" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" "Verberg databases die aan de hier opgegeven reguliere expressie (PCRE) " "voldoen" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Verberg databases" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4725,43 +4713,43 @@ msgstr "" "Laat dit veld leeg om geen SQL-historie te ondersteunen, suggestie: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL-query historie tabel" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Machinenaam waar de MySQL-server bereikbaar is" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Server machinenaam" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Uitlog URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Het maximum aantal tabellen dat wordt getoond in de tabellen lijst" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Probeer te verbinden zonder wachtwoord" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Verbind zonder wachtwoord" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4775,31 +4763,31 @@ msgstr "" "sorteren door hun naam op volgorde in te voeren en met [kbd]*[/kbd] te " "eindigen om de rest op alfabetische volgorde te tonen." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Toon enkel de opgesomde databases" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" "Laat dit veld leeg indien u geen gebruik maakt van 'config' authenticatie" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Wachtwoord voor 'config' authenticatie" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Laat dit veld leeg wanneer PDF-schema wil ondersteunen, suggestie: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF-schema: pagina's tabel" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4810,21 +4798,21 @@ msgstr "" "informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Databasenaam" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Het TCP poortnummer waarop MySQL luistert, laat dit veld leeg om de " "standaard waarde te gebruiken" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Server poort" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4832,11 +4820,11 @@ msgstr "" "Laat dit veld leeg om geen recente gebruikte tabellen op te slaan over " "sessies heen, voorstel: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Recent gebruikte tabel" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4844,19 +4832,19 @@ msgstr "" "Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/relation]" "relation-links[/a] te ondersteunen, suggestie: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Relatie tabel" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "SQL-commando om de beschikbare databases op te vragen" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES opdracht" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4864,44 +4852,44 @@ msgstr "" "Zie [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authenticatie typen[/" "a] voor een voorbeeld" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Signon sessienaam" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Het socket waarop de MySQL-server luistert, laat dit leeg voor de standaard " "waarde" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "SSL toepassen voor de verbinding naar de MySQL-server" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Gebruik SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Laat dit veld leeg om geen PDF-schema te ondersteunen, suggestie: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF-schema: tabel coördinaten" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4910,11 +4898,11 @@ msgstr "" "is, laat dit veld leeg om weer te geven velden niet te ondersteunen; " "suggestie: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Toon velden tabel" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4922,11 +4910,11 @@ msgstr "" "Laat dit veld leeg om geen UI voorkeuren op te slaan, voorstel: [kbd]" "pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "UI voorkeuren tabel" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4934,11 +4922,11 @@ msgstr "" "Of DROP DATABASE IF EXISTS opdracht toegevoegd wordt als eerste regel van de " "log als een database aangemaakt wordt." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Voeg DROP DATABASE toe" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4946,12 +4934,12 @@ msgstr "" "Of een DROP TABLE IF EXISTS opdracht toegevoegd wordt als eerste regel van " "de log als een tabel aangemaakt wordt." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Voeg DROP TABLE toe" # "statement" hier vertalen is geen goed idee. -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4959,21 +4947,21 @@ msgstr "" "Of een DROP VIEW IF EXISTS statement als de eerste lijn toegevoegd zal " "worden bij het aanmaken van een weergave of niet." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Voeg DROP VIEW toe" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Definiëert de lijst van opdrachten die gebruikt worden bij het automatisch " "aanmaken bij nieuwe versies." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Bij te houden opdrachten" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4981,11 +4969,11 @@ msgstr "" "Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, voorgesteld: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "SQL-query opvolgingstabel" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4993,11 +4981,11 @@ msgstr "" "Of het opvolgsysteem versies voor tabellen en weergaven automatisch aanmaakt " "of niet." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Automatisch versies aanmaken" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -5009,15 +4997,15 @@ msgstr "" "Laat dit veld leeg om geen gebruikers instellingen op te slaan, voorgesteld: " "[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Gebruikersvoorkeuren opslagtabel" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Gebruiker voor 'config' authenticatie" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -5025,11 +5013,11 @@ msgstr "" "Schakel dit uit wanneer u zeker weet dat uw pma_* tabellen up-to-date zijn. " "Dit voorkomt compatibiliteitscontroles en verbeterd daarmee de prestaties" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Uitgebreide controle" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -5037,19 +5025,19 @@ msgstr "" "Een gebruiksvriendelijke naam voor deze server. Laat dit veld leeg om de " "machinenaam te tonen." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Uitgebreide naam voor deze server" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Of er een "Toon alle (rijen)" knop moet worden getoond" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Toon alle rijen" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5060,58 +5048,58 @@ msgstr "" "configuratiebestand staat opgeslagen; dit beperkt echter niet de " "mogelijkheid om het bijbehorende SQL-commando handmatig uit te voeren" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Toon formulier voor wachtwoord wijzigen" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Toon formulier om een nieuwe database te creëren" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "Standaard weergave richting" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" "Definiëert of type velden initiëel getoond worden in bewerk/toevoeg modus" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Toon veld typen" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Toon de functie velden tijdens het wijzigen/invoegen" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Toon functie velden" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 #, fuzzy #| msgid "Where to show the table row links" msgid "Whether to show hint or not" msgstr "Waar de tabelrij links getoond worden" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Toon raster" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5119,35 +5107,35 @@ msgstr "" "Toon link naar de [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/" "a] uitvoer" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Toon phpinfo() link" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Toon gedetailleerde MySQL-server informatie" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Geeft aan of SQL-queries die door phpMyAdmin werden gegenereerd moeten " "worden getoond" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Toon SQL-queries" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Maakt het mogelijk om statistieken van databases en tabellen te tonen (over " "o.a. het schijfgebruik)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Toon statistieken" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5155,11 +5143,11 @@ msgstr "" "Indien tooltips zijn ingeschakeld en er een database opmerking aanwezig is, " "wisselt dit de opmerking en de werkelijke naam om" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Toon database opmerking in plaats van de naam" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5170,30 +5158,30 @@ msgstr "" "$cfg['LeftFrameTableSeparator'] gesplitst. Hierdoor krijgt enkel de map de " "naam van de opmerking, de tabelnaam blijft ongewijzigd" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Toon tabel opmerking in plaats van de naam" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Toon tabel opmerking in een tooltip" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Markeer in gebruik zijnde tabellen, waardoor het mogelijk om een databases " "die deze tabellen bevat te tonen" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Herken vergrendelde tabellen" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Vereist dat SQL Validator geactiveerd is" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5203,7 +5191,7 @@ msgstr "Vereist dat SQL Validator geactiveerd is" msgid "Password" msgstr "Wachtwoord" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5211,23 +5199,23 @@ msgstr "" "[strong]Waarschuwing:[/strong] Vereist dat PHP SOAP extensie of PEAR SOAP " "geïnstalleerd is" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Activeer SQL Validator" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" "Geef eventueel aangepaste gebruikersnaam op (standaard [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Gebruikersnaam" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5236,21 +5224,21 @@ msgstr "" "database in het "e;Nieuwe database aanmaken" formulier, of laat het " "veld leeg" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Stel een databasenaam voor" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Een waarschuwing wordt getoond op de hoofdpagina als Suhosin gedetecteerd " "wordt" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin waarschuwing" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5258,11 +5246,11 @@ msgstr "" "Tekstveld grootte (kolommen) in aanpas modus, deze waarde wordt benadrukt " "weergegeven voor SQL query tekstvelden (*2) en voor het Query scherm (*1.25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Textarea kolommen" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5270,31 +5258,31 @@ msgstr "" "Tekstveld grootte (rijen) in aanpas modus, deze waarde wordt benadrukt " "weergegeven voor SQL query tekstvelden (*2) en voor het Query scherm (*1.25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Tekstveld regels" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Titel van het browser scherm wanneer een database is geselecteerd" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Titel van het browser scherm wanneer niets geselecteerd is" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Standaard titel" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Titel van het browser scherm wanneer een server is geselecteerd" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Titel van het browser scherm wanneer een tabel is geselecteerd" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5306,28 +5294,28 @@ msgstr "" "For) header moet vertrouwen wanneer deze afkomstig is van het IP 1.2.3.4:[br]" "[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Lijst van vertrouwde proxy servers" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" "Directory op de server waar te importeren bestanden kunnen worden geupload" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Upload folder" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Maak het mogelijk om te zoeken binnen de gehele database" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Gebruik database doorzoeken" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5335,11 +5323,11 @@ msgstr "" "Wanneer uitgeschakeld, kunnen gebruikers geen van de opties onderaan " "wijzigen, onafhankelijk van het aanvinkveld aan de rechterkant" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Schakel de ontwikkelaar tab in bij instellingen" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5349,20 +5337,20 @@ msgstr "" "meervoudigeopdracht. Zie libraries/import.lib.php voor de criteria waarop " "wordt gebaseerd hoeveel opdrachten een query mag bevatten." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Uitgebreide uitvoer voor meervoudigeopdrachten" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Controleer de meest recente versie" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Schakel de controle op de nieuwste versie in op de hoofdpagina van phpMyAdmin" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5370,7 +5358,7 @@ msgstr "" msgid "Version check" msgstr "Versie controle" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5378,7 +5366,7 @@ msgstr "" "Gebruik [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compressie " "voor import en export operaties" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5398,47 +5386,47 @@ msgstr "HTTP authenticatie" msgid "Signon authentication" msgstr "Signon authenticatie" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV met behulp van LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document rekenblad" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Snel" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Aangepast" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Database export opties" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV voor MS Excel data" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document Tekst" @@ -5621,9 +5609,8 @@ msgstr "Maak tabel" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Naam" @@ -5976,7 +5963,7 @@ msgid "Hide" msgstr "Verberg" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformaties" @@ -6934,7 +6921,7 @@ msgstr "Verkeerd aantal velden in CSV invoer op regel %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Tabelnaam" @@ -7652,7 +7639,7 @@ msgstr "" msgid "Direction" msgstr "Directe verbindingen" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Lengte/Waardes*" @@ -7959,7 +7946,7 @@ msgstr "Inhoudsopgave" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Attributen" @@ -8255,7 +8242,7 @@ msgstr "Tabel lijkt leeg!" msgid "Tracking of %s.%s is activated." msgstr "Tracking is ingeschakeld voor %s.%s." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8267,7 +8254,7 @@ msgstr "" "een enkel aanhalingsteken (\"'\") bij deze waardes, plaats er dan een " "backslash voor (voorbeeld '\\\\xyz' of 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8275,13 +8262,13 @@ msgstr "" "Voer voor standaard waarden aub een enkele waarde in, zonder backslash of " "aanhalingstekens, gebruik makend van dit formaat: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Index" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8290,11 +8277,11 @@ msgstr "" "Voor een lijst met beschikbare transformatie opties en MIME-type " "transformaties, klik op %sTransformatie opties%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Transformatieopties" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8306,35 +8293,35 @@ msgstr "" "(\"'\") moet invoegen in deze waardes, plaats er dan een backslash voor " "(bijvoorbeeld '\\\\xyz' of 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "ENUM of SET data te lang?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Krijg meer plaats om aan te passen" # "Geen" of indien telbaar: "Geen enkele". -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Geen" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Als aangegeven:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primaire sleutel" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Volledige tekst" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8343,25 +8330,25 @@ msgstr "" "Geen beschrijving beschikbaar voor deze transformatie.
Raadpleeg de " "maker over wat %s doet." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Voeg %s kolom(men) toe" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "U moet minimaal een kolom toevoegen." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Opslag Engine" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "PARTITION definitie" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "+ Add a new value" msgid "+ Add a value" @@ -13325,6 +13312,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] of een getal dat aangeeft tot " +#~ "hoeveel velden de verticale weergave moet worden toegepast" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Weergave richting voor toevoegen/bewerken van kolommen" + #~ msgid "Create table on database %s" #~ msgstr "Nieuwe tabel aanmaken in database %s" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index c5c399d9a4..ae98e17151 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,7 +66,7 @@ msgstr "" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -128,7 +128,7 @@ msgid "Database comment: " msgstr "" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "" @@ -138,7 +138,7 @@ msgstr "" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -154,7 +154,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -166,7 +166,7 @@ msgstr "" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -177,7 +177,7 @@ msgstr "" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "" @@ -191,13 +191,13 @@ msgid "Links to" msgstr "" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "" @@ -311,14 +311,14 @@ msgstr "" msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, possible-php-format msgid "Add %s" msgstr "" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -333,8 +333,8 @@ msgstr "" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -353,7 +353,7 @@ msgid "Edit or export relational schema" msgstr "" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -661,7 +661,7 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -723,7 +723,7 @@ msgstr "" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -798,12 +798,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, possible-php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1112,7 +1112,7 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1120,7 +1120,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "" @@ -1332,7 +1332,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1538,7 +1538,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1581,7 +1581,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1708,7 +1708,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2210,7 +2210,7 @@ msgstr "" msgid "Indexes" msgstr "" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2246,7 +2246,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2541,18 +2541,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2624,7 +2624,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2696,7 +2696,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "" @@ -2708,11 +2708,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "" @@ -2721,7 +2721,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "" @@ -2825,20 +2825,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3037,7 +3037,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3184,561 +3184,551 @@ msgid "Default display direction" msgstr "" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3746,277 +3736,277 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4024,436 +4014,436 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4462,325 +4452,325 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4788,28 +4778,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -4819,86 +4809,86 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4906,56 +4896,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -4963,13 +4953,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -4989,47 +4979,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5198,9 +5188,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "" @@ -5524,7 +5513,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "" @@ -6363,7 +6352,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7030,7 +7019,7 @@ msgstr "" msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "" @@ -7286,7 +7275,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "" @@ -7566,7 +7555,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7574,30 +7563,30 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, possible-php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -7605,59 +7594,59 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, possible-php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, possible-php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "" diff --git a/po/pl.po b/po/pl.po index 5dc81f4fb7..c36bb12145 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-28 11:49+0200\n" "Last-Translator: Stanisław Krukowski \n" "Language-Team: polish \n" @@ -67,7 +67,7 @@ msgstr "Szukaj" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -132,7 +132,7 @@ msgid "Database comment: " msgstr "Komentarz bazy danych:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Komentarze tabeli" @@ -142,7 +142,7 @@ msgstr "Komentarze tabeli" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -158,7 +158,7 @@ msgstr "Kolumna" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -170,7 +170,7 @@ msgstr "Typ" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -181,7 +181,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Domyślnie" @@ -195,13 +195,13 @@ msgid "Links to" msgstr "Łącza do" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Komentarze" @@ -315,14 +315,14 @@ msgstr "Tylko dane" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE przed przekopiowaniem" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartość AUTO_INCREMENT" @@ -337,8 +337,8 @@ msgstr "Przełącz do przekopiowanej bazy danych" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -359,7 +359,7 @@ msgid "Edit or export relational schema" msgstr "Edytuj lub eksportuj schemat relacyjny" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -672,7 +672,7 @@ msgid "Check tables having overhead" msgstr "Zaznacz nieoptymalne" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -736,7 +736,7 @@ msgstr "Słownik danych" msgid "Tracked tables" msgstr "Monitorowane tabele" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -811,12 +811,12 @@ msgstr "Monitoruj tabelę" msgid "Database Log" msgstr "Log bazy danych" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Wartości dla kolumny \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Wprowadź wartości w osobnych polach" @@ -1161,7 +1161,7 @@ msgstr "Przeładowanie uprawnień" msgid "Removing Selected Users" msgstr "Usuń zaznaczonych użytkowników" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Zamknij" @@ -1169,7 +1169,7 @@ msgstr "Zamknij" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Edytuj" @@ -1413,7 +1413,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1642,7 +1642,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1693,7 +1693,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1840,7 +1840,7 @@ msgstr "Maksymalny czas wykonania" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2391,7 +2391,7 @@ msgstr "Brak zdefiniowanego indeksu!" msgid "Indexes" msgstr "Indeksy" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2429,7 +2429,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2749,18 +2749,18 @@ msgid "shared" msgstr "współdzielone" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabele" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2841,7 +2841,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2915,7 +2915,7 @@ msgstr "MySQL zwrócił komunikat: " msgid "Failed to connect to SQL validator!" msgstr "Nie można połączyć się z serwerem MySQL" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Wyjaśnij SQL" @@ -2927,11 +2927,11 @@ msgstr "Pomiń wyjaśnienie SQL" msgid "Without PHP Code" msgstr "Bez kodu PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Utwórz kod PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Odśwież" @@ -2940,7 +2940,7 @@ msgstr "Odśwież" msgid "Skip Validate SQL" msgstr "Pomiń sprawdzanie poprawności SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Sprawdź poprawność SQL" @@ -3058,20 +3058,20 @@ msgid "Click to toggle" msgstr "Kliknij, aby zaznaczyć" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3282,7 +3282,7 @@ msgid "Set value: %s" msgstr "Ustaw wartość: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Przywróć wartość domyślną" @@ -3441,106 +3441,96 @@ msgid "Default display direction" msgstr "Opcje eksportu bazy danych" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Wyświetl kierunek dla dodawania/zmiany kolumn" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Zakładka, która jest wyświetlana po wejściu do bazy danych" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Domyślna zakładka bazy danych" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Zakładka, która jest wyświetlana po wejściu w szczegóły serwer" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Domyślna zakładka serwera" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Zakładka, która jest wyświetlana po wejściu w szczegóły tabeli" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Domyślna zakładka tabeli" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Domyślnie pokaż treść kolumn binarnych jako wartość HEX" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Pokaż zawartość binarną w postaci szesnastkowej" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Pokaż wykaz baz danych jako listę zamiast listy rozwijanej" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Wyświetl bazy danych w postaci listy" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Pokaż wykaz serwerów jako listę zamiast listy rozwijanej" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Wyświetl serwery w postaci listy" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Zarządzanie tabelą" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Edytuj następny rekord" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Funkcje wyświetlania" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Ignoruj błędy" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Wyświetl ikony błędów" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3548,32 +3538,32 @@ msgstr "" "Jak długo (w sekundach) może trwać wykonywanie skryptu ([kbd]0[/kbd] oznacza " "brak limitu)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Maksymalny czas wykonania" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Zapisz jako plik" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Kodowanie pliku" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Typ kompresji" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3582,66 +3572,66 @@ msgstr "Typ kompresji" msgid "Put columns names in the first row" msgstr "Umieść nazwy pól w pierwszym rekordzie" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Pola zawarte w" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Pola poprzedzone przez" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Zamiana NULL na" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Usuń znaki nowej lini z kolumn" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linie zakończone przez" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Linie zakończone przez" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Wydanie Excela" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Nazwa schematu bazy danych" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Nazwa schematu serwera" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Nazwa schematu tabeli" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3649,120 +3639,120 @@ msgstr "Nazwa schematu tabeli" msgid "Dump table" msgstr "%s tabel(a)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Załącz nagłówek tabeli" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Nagłówek tabeli" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Kontynuacja nagłówka tabeli" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Etykieta klucza" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Typ MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relacje" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Rodzaj eksportu" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Zapisz na serwerze" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Nadpisuj istniejące pliki" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Zapamiętaj nazwę pliku schematu" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Użyj cudzysłowów z nazwami tabel i pól" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Tryb zgodności SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 #, fuzzy msgid "CREATE TABLE options:" msgstr ", ZMIENNA as mojanazwa" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Daty utworzenia/aktualizacji/sprawdzenia" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Użyj opóźnionych dodań" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Wyłącz sprawdzanie kluczy zewnętrznych" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Użyj liczb szesnastkowych dla typu BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Użyj ignorowanych dodań" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Składnia używana do wstawiania wierszy" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maksymalna długość utworzonego zapytania" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Rodzaj eksportu" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Obejmij eksport transakcją" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Domyślne opcje eksportu" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Wymusza bezpiecznie połącznie podczas używania phpMyAdmina" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Wymuszaj połączenie SSL" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3770,153 +3760,153 @@ msgstr "" "Porządek sortowania pozycji w liście rozwijanej kluczy obcych; [kbd]content[/" "kbd] - dane referencyjne, [kbd]id[/kbd] - wartość klucza" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Porządek sortowania kluczy obcych" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Jeśli jest mniej pozycji zostanie użyta lista wyboru" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Limit kluczy obcych" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Tryb przeglądania" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Personalizuj tryb przeglądania" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Indywidualizacja opcji eksportu" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Programista" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Ustawienia dla programistów phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Tryb edycji" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Personalizuj tryb edycji" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Domyślne opcje eksportu" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Dostosuj domyślne opcje eksportu" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funkcje" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Ogólne" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Domyślne opcje importu" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Dostosuj domyślne opcje importu" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Import / eksport" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Ustaw katalogi importu i eksportu oraz opcje kompresji" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Opcje wyświetlania baz danych" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Ramka nawigacji" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Dostosuj wygląd ramki nawigacji" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Serwery" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Opcje wyświetlania serwerów" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Opcje wyświetlania tabel" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Główna ramka" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Tekst w formacie Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Inne kluczowe ustawienia" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Inne ustawienia" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Numer strony:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3925,22 +3915,22 @@ msgstr "" "Określ tytuł. Przeczytaj szczegóły w [a@Documentation.html#cfg_TitleTable]" "dokumentacji[/a], żeby dowiedzieć się więcej." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Okienko zapytania" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Dostosuj opcje okna zapytań" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Bezpieczeństwo" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3948,27 +3938,27 @@ msgstr "" "Proszę zauważyć, że phpMyAdmin jest po prostu interfejsem użytkownika i jego " "funkcje nie ograniczają MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Ustawienia podstawowe" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Typ uwierzytelniania" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Typ uwierzytelniania" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Konfiguracja serwera" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3976,75 +3966,75 @@ msgstr "" "Zaawansowane ustawienia serwera; nie zmieniaj ich jeżeli nie jesteś pewien " "ich znaczenia" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Podaj parametry dla połączenia z serwerem" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 #, fuzzy #| msgid "Configuration" msgid "Configuration storage" msgstr "Konfiguracja" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Śledzenie zmian" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Dostosowanie opcji eksportu" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Dostosowanie opcji importu" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Dostosowanie ramki nawigacyjnej" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Dostosowanie ramki głównej" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Zapytania SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Okno zapytania SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Dostosuj odnośniki pokazywane w ramkach zapytań SQL" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "Zapytania SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Historia SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4052,49 +4042,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Strona startowa" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Personalizuj stronę startową" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Zakładki" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Wybierz sposób działania zakładek" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Użyj pola tekstowego" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Indywidualizacja opcji eksportu" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Tekst Texy!" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Ostrzeżenie" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Wyłącz część ostrzeżeń wyświetlanych przez phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4102,15 +4092,15 @@ msgstr "" "Włącza format kompresji [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] dla " "operacji importu i eksportu" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Dodatkowe parametry dla iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4119,11 +4109,11 @@ msgstr "" "składającego się z wielu instrukcji, nawet jeśli wykonanie którejś z nich " "nie udało się" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignoruj błędy w ciągu instrukcji" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4133,21 +4123,21 @@ msgstr "" "koniec limitu czasu. Może to być dobry sposób importu dużych plików, " "jednakże może on popsuć transakcje." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Import częściowy: pozwalaj przerwać" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Nie przerywaj w przypadku błędów WSTAWIANIA wierszy" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Zamiana danych tabeli z plikiem" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4155,94 +4145,94 @@ msgstr "" "Domyślny format oznacza, że ta lista zależy od położenia (bazy danych, " "tabeli) i tylko SQL jest zawsze dostępne" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Format importowanych plików" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Użyj słowa kluczowego LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "W pierwszym rekordzie znajdują się nazwy kolumn" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Nie importuj pustych rekordów" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importuj walutę (zamienia $5.00 na 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" "Importuj procenty jako liczby podzielone przez 100 (zamienia 12.00% na .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Liczba rekordów (zapytań), które należy z początku pominąć" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Import częściowy: pomiń zapytania" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nie używaj AUTO_INCREMENT dla wartości zerowych" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Początkowy stan pasków przesuwania" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Pokazuje ile rekordów może zostać wstawionych w jednym czasie" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Liczba wstawianych rekordów" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Cel ikony szybkiej akcji" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Pokaż logo w lewej ramce" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Pokaż logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Wyświetla wybór serwera - w lewej ramce, na górze" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Wyświetlaj wybór serwerów" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of tables to display the table filter box" msgstr "Maksymalna liczba tabel pokazywanych na liście tabel" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" "Łańcuch znaków, który oddziela bazy danych na różne poziomy zagłębienia" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Separator struktury drzewa bazy danych" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4250,39 +4240,39 @@ msgstr "" "Tylko wersja uproszczona. Wyświetlaj bazy danych w postaci drzewa (określone " "przez separator zdefiniowany poniżej)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Wyświetla bazy danych w postaci drzewa" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Wyłącz, jeśli chcesz widzieć wszystkie bazy danych jednocześnie" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Używaj uproszczonej wersji" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Maksymalny poziom zagłębienia tabeli" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Łańcuch znaków, który separuje tabele na różnych poziomach zagłębienia" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Separator poziomów tabeli" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "Adres URL, który będzie wskazywany przez logo w ramce nawigacji" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Odnośnik URL do logo" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4290,49 +4280,49 @@ msgstr "" "Otwieraj stronę w tym samym oknie ([kbd]main[/kbd]) lub w nowym oknie ([kbd]" "new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Cel odnośnika logo" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Podświetla serwer po najechaniu kursorem myszy" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Włącz podświetlanie" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Maksymalna liczba tabel pokazywanych na liście tabel" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Recently used tables" msgstr "tworzyć i usuwać bazy danych" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Używaj mniej grafiki w zakładkach" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Uproszczone zakładki" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "Maksymalna liczba pokazywanych znaków zapytania SQL" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Limit znaków w kolumnie" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4343,11 +4333,11 @@ msgstr "" "że gdy korzysta się z więcej niż jednego serwera, łatwo zapomnieć wylogować " "się z pozostałych." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Usuń wszystkie ciasteczka przy wylogowaniu" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4355,11 +4345,11 @@ msgstr "" "Określa czy przy uwierzytelnianiu przez ciasteczka ma być przypominana " "poprzednia nazwa użytkownika" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Przypominaj nazwę użytkownika" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4372,54 +4362,54 @@ msgstr "" "przeglądarki. Takie rozwiązanie jest preferowane w środowisku niegodnym " "zaufania." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Przechowywania ciasteczka logowania" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Jak długo (w sekundach) ważny będzie ciasteczko logowania" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Ważność ciasteczka logowania" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Większe pole edycji dla pola LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Większe pole edycji dla pola LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Użyj ikon na stronie głównej" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Maksymalna liczba pokazywanych znaków zapytania SQL" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Maksymalna pokazywana długość SQL" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Użytkownicy nie mogą ustawić wyższej wartości" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Maksymalna liczba baz danych pokazywanych w lewej ramce i na liście baz " "danych" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Maksimum baz danych" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4429,19 +4419,19 @@ msgstr "" "zestaw składa się z większej ilości wierszy, zostanie pokazany link " "Poprzednie/Następne." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Maksymalna liczba rekordów do wyświetlenia" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Maksymalna liczba tabel pokazywanych na liście tabel" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Maksimum tabel" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4449,11 +4439,11 @@ msgstr "" "Wyłącz domyślne ostrzeżenie rozszerzenia mcrypt, które pojawia się przy " "autoryzacji ciasteczkami" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "ostrzeżenie rozszerzenia mcrypt" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4461,212 +4451,212 @@ msgstr "" "Ile pamięci może zaalokować skrypt, np. [kbd]32M[/kbd] ([kbd]0[/kbd] oznacza " "brak limitu)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Limit pamięci" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Użyj naturalnego sortowania tabel i baz danych" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Sortowanie tabeli wg" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Używaj tylko ikon, tylko tekstu lub ikon i tekstu" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Wygląd interfejsu paska nawigacji" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Czy kompresować GZip-em wyjście w celu zwiększenia szybkości transferów HTTP" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Kompresja wyjścia GZip" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Domyslny porządek sortowania" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Czy użyć trwałych połączeń do baz danych MySQL" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Trwałe połączenia" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Wygląd interfejsu do operacji na tabeli" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Chroń kolumny binarne" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanentna historia zapytań" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Ile zapytań ma być przechowywanych w historii" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Długość historii zapytań" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Zakładka wyświetlana po otwarciu nowego okna zapytań" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Domyślna zakładka okna zapytań" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Wysokość pola zapytania (w pikselach)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Wysokość pola zapytania" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Szerokość pola zapytania (w pikselach)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Szerokość pola zapytania" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Wybierz funckje, które będą użyte do konwersji kodowania napisów" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Mechanizm konwersji kodowania napisów" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Zmień nazwę tabeli na" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Liczba wątków naprawiających" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Pokaż przycisk pomocy" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Katalog na serwerze, w którym będą zapisywane eksportowane pliki" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Katalog do zapisu" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Należy pozostawić puste jeśli nie jest używane" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 #, fuzzy msgid "Host authorization order" msgstr "Typ uwierzytelniania" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Pozostaw puste, aby użyć wartości domyślnych" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 #, fuzzy msgid "Host authorization rules" msgstr "Uwierzytelnianie sprzętowe nie powiodło się" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Pozwól na logowanie bez hasła" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Pozwól na logowanie się roota" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "Nazwa \"Auth Realm\" wyświetlana przy autoryzacji HTTP Basic" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4676,19 +4666,19 @@ msgstr "" "SweKey[/a]. Relatywna ścieżka do głównego katalogu phpMyAdmin, np. ./swekey." "conf" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "Plik konfiguracyjny SweKey" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Jaka metoda uwierzytelniania ma być użyta" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Typ uwierzytelniania" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4696,11 +4686,11 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać zakładek [a@http://wiki.phpmyadmin.net/" "pma/bookmark]bookmark[/a]. Sugerowana nazwa: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Tabela zakładek" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4708,32 +4698,32 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać komentarzy i typów mime. Sugerowana " "nazwa: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Tabela informacji o kolumnach" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Czy połączenie do serwera MySQL ma być kompresowane" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Kompresja połączenia" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Sposób połączenia z serwerem; w razie niepewności, należy pozostawić tcp" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Typ połączenia" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Hasło użytkownika monitorującego" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4742,19 +4732,19 @@ msgstr "" "jest dostępnych pod adresem: [a@http://wiki.phpmyadmin.net/pma/controluser]" "wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Użytkownik monitorujący" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Zliczaj tabele podczas pokazywania listy bazy danych" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Zliczaj tabele" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4762,11 +4752,11 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać trybu projektowania. Sugerowana nazwa: " "[kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Tabela trybu projektowania" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4775,29 +4765,29 @@ msgstr "" "tracker.php?aid=1849494]PMA bug tracker[/a] i [a@http://bugs.mysql.com/19588]" "MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Wyłącz używanie INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Jakiego rozszerzenie PHP ma być użyte; o ile jest obsługiwane, należy podać " "mysqli" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Rozszerzenie PHP" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Ukryj bazy danych pasujące do wyrażenia regularnego (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Ukryj bazy danych" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4805,43 +4795,43 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać historii zapytań SQL. Sugerowana nazwa: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Tabela historii zapytań SQL" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Nazwa hosta na którym uruchomiony jest serwer MySQL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Nazwa hosta serwera" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "URL wylogowania" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Maksymalna liczba tabel pokazywanych na liście tabel" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Ma być podejmowana próba łączenia się bez hasła" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Łącz się bez hasła" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -4857,31 +4847,31 @@ msgstr "" "znakiem \\, by uzyskać je w znaczeniu dosłownym, np. 'moja\\_baza' a nie " "'moja_baza'" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Pokaż tylko wymienione bazy danych" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" "Należy pozostawić puste w przypadku innego niż config typu uwierzytelniania" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Hasło dla uwierzytelniania typu config" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "Schemat PDF: strony tabeli" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4892,22 +4882,22 @@ msgstr "" "pmadb]pmadb[/a]. Puste pole oznacza brak obsługi. Domyślna wartość: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nazwa bazy danych" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Port na którym nasłuchuje serwer MySQL, pole puste oznacza wartość domyślną" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Port serwera" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -4919,13 +4909,13 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać komentarzy i typów mime. Sugerowana " "nazwa: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Przypominaj nazwę użytkownika" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4933,19 +4923,19 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać [a@http://wiki.phpmyadmin.net/pma/" "relation]relation-links[/a]. Sugerowana nazwa: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Tabela relacji" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "Polecenie SQL do pobrania dostępnych baz danych" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "Polecenie SHOW DATABASES" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4953,56 +4943,56 @@ msgstr "" "Zobacz przykład usługi pojedynczego logowania (Signon) [a@http://wiki." "phpmyadmin.net/pma/auth_types#signon]authentication types[/a]" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Nazwa sesji usługi pojedynczego logowania (Signon)" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "URL usługi pojedynczego logowania (Signon)" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Gniazdko, na którym nasłuchuje serwer MySQL, pole puste oznacza wartość " "domyślną" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Gniazdo serwera" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Aktywuj SSL do połączeń z serwerem MySQL" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Używaj SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "Schemat PDF: współrzędne tabeli" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Wyświetl komentarze dla kolumn" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -5014,75 +5004,75 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Tabela przechowująca preferencje użytkowników" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Dodaj DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Dodaj DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Dodaj DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Cecha" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Tabela śledzenia zapytań SQL" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Tryb automatycznej naprawy" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -5094,15 +5084,15 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać trybu projektowania. Sugerowana nazwa: " "[kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Tabela przechowująca preferencje użytkowników" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Użytkownik dla uwierzytelniania typu config" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -5110,11 +5100,11 @@ msgstr "" "Dezaktywuj jeśli jesteś pewien, że tabele pma_* są zaktualizowane. To " "zapobiega ciągłemu sprawdzaniu kompatybilności, przez co zwiększa wydajność" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Szczegółowe sprawdzanie" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -5122,19 +5112,19 @@ msgstr "" "Przyjazny opis serwera dla użytkownika. Pozostaw puste, aby wyświetlić nazwę " "hosta." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Szczegółowa nazwa serwera" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Pozwól wyświetlać wszystkie rekordy" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5145,56 +5135,56 @@ msgstr "" "pliku konfiguracyjnym. To nie ogranicza możliwości wykonania tego samego " "polecenia bezpośrednio" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Pokaż formularz zmiany hasła" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Pokaż formularz tworzenia bazy danych" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Opcje eksportu bazy danych" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Pokaż otwarte tabele" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Wyświetla pola z funkcjami w trybie edycji/dodawania" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Pokaż pola z funkcjami" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Pokaż siatkę" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5202,33 +5192,33 @@ msgstr "" "Pokazuje odnośnik do [a@http://php.net/manual/function.phpinfo.php]phpinfo()" "[/a]" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Pokaż odnośnik phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Pokaż szczegółowe informacje o serwerze MySQL" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Czy mają być pokazywane zapytania SQL generowane przez phpMyAdmina" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Pokaż zapytania SQL" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Pozwala wyświetlać statystyki bazy danych i tabeli (np. wykorzystanie " "miejsca)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Pokaż statystyki" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5236,11 +5226,11 @@ msgstr "" "Jeśli podpowiedzi są włączone i ustawiony jest komentarz do bazy danych, " "zamienia komentarz i nazwę bazy danych" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Wyświetla komentarz do bazy danych zamiast jej nazwy" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5252,30 +5242,30 @@ msgstr "" "['LeftFrameTableSeparator']. A więc tylko katalog jest nazywany jako alias, " "a nazwa tabeli pozostaje niezmieniona" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Wyświetla komentarz do tabeli zamiast jej nazwy" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Wyświetla komentarz do tabeli w postaci podpowiedzi" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Zaznacza używane tabele i umożliwia pokazanie baz danych z zablokowanymi " "tabelami" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Pomiń zablokowane tabele" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Wymaga włączenia walidatora SQL" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5285,7 +5275,7 @@ msgstr "Wymaga włączenia walidatora SQL" msgid "Password" msgstr "Hasło" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5293,11 +5283,11 @@ msgstr "" "[strong]Ostrzeżenie:[/strong] wymaga zainstalowanego rozszerzenia PHP SOAP " "lub PEAR SOAP" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Włącz walidator SQL" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5305,12 +5295,12 @@ msgstr "" "Jeśli masz swoją nazwa użytkownika, ustaw ją tutaj (domyślnie [kbd]anonymous" "[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Nazwa użytkownika" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5318,33 +5308,33 @@ msgstr "" "Sugeruje nazwę bazy danych podczas operacji "Utwórz bazę danych" " "(jeśli możliwe) lub zostawia puste pole" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Zasugeruj nazwę nowej bazy danych" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Ostrzeżenie jest wyświetlane na stronie głównej, jeśli wykryte jest " "rozszerzenie Suhosin" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Ostrzeżenie Suhosin" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/usuń pola" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5352,31 +5342,31 @@ msgstr "" "Wielkość pola textarea (wierszy) w trybie edycji. Wartość będzie powięszkona " "dla zapytań SQL (*@) i okna zapytań (*1.25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Wierszy w polu textarea" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Tytuł okna, jeśli jest wybrana baza danych" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Tytuł okna, jeśli nic nie jest wybrane" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Domyślny tytuł" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Tytuł okna, jeśli wybrany jest serwer" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5388,30 +5378,30 @@ msgstr "" "nagłówku HTTP_X_FORWARDED_FOR (X-Forwarded-For) przesłanym przez serwer " "pośredniczący (proxy) 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" "Lista zaufanych adresów IP serwerów pośredniczących (proxy) dla reguł allow/" "deny" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" "Katalog na serwerze, do którego można przesyłać pliki w celu importowania" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Katalog na przesyłane pliki" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Pozwól na przeszukiwanie całej bazy danych" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Przeszukiwanie bazy danych" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5419,11 +5409,11 @@ msgstr "" "Kiedy wyłączone, użytkownicy nie mogą zmienić żadnej z poniższych opcji , " "wyłączając zaznaczone po prawej" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Włącz zakładkę Developerską w ustawieniach" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5433,19 +5423,19 @@ msgstr "" "Zobacz libraries/import.lib.php, aby dowiedzieć się ile instrukcja może " "domyślnie zawierać zapytań." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Szczegóły wielokrotnych instrukcji" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Sprawdź, czy jest nowsza wersja" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Włącza sprawdzanie czy są aktualizacje phpMyAdmin" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5453,7 +5443,7 @@ msgstr "Włącza sprawdzanie czy są aktualizacje phpMyAdmin" msgid "Version check" msgstr "Sprawdzenie wersji" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5461,7 +5451,7 @@ msgstr "" "Włącza format kompresji [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP" "[/a] dla operacji importu i eksportu" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5482,49 +5472,49 @@ msgstr "Uwierzytelnianie HTTP" msgid "Signon authentication" msgstr "Typ uwierzytelniania" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV przy użyciu LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Arkusz kalkulacyjny OpenDocument" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Szybko" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Własny kolor" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcje eksportu bazy danych" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV dla MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Tekst w formacie Open Document" @@ -5714,9 +5704,8 @@ msgstr "Utwórz tabelę" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nazwa" @@ -6127,7 +6116,7 @@ msgid "Hide" msgstr "Ukryj" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Sposób prezentacji danych" @@ -7082,7 +7071,7 @@ msgstr "Niewłaściwa liczba pól w linii %d danych wejściowych CSV." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Nazwa tabeli" @@ -7808,7 +7797,7 @@ msgstr "" msgid "Direction" msgstr "Bezpośrednie połączenia" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Długość/Wartości*" @@ -8120,7 +8109,7 @@ msgstr "Spis treści" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atrybuty" @@ -8432,7 +8421,7 @@ msgstr "Tabela wydaje się pusta!" msgid "Tracking of %s.%s is activated." msgstr "Monitorowanie %s.%s zostało aktywowane." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8450,7 +8439,7 @@ msgstr "" "\") lub apostrof (\"'\"), należy je poprzedzić odwrotnym ukośnikiem (np.: '\\" "\\xyz' lub 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8459,13 +8448,13 @@ msgstr "" "cytowania odwrotnym ukośnikiem czy ujmowania w cudzysłowy, używając takiego " "formatu: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8474,11 +8463,11 @@ msgstr "" "Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %" "sopisy transformacji%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opcje transformacji" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8490,64 +8479,64 @@ msgstr "" "apostrof (\"'\"), należy je poprzedzić odwrotnym ukośnikiem (np.: '\\\\xyz' " "lub 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "Dane dla ENUM lub SET zbyt długie?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Więcej miejsca dla edycji" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Brak" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Zdefiniowana następująco:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Podstawowy" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Pełny tekst" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "Transformacja ta nie ma opisu.
Proszę zapytać autora, co robi %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s pól" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Należy dodać przynajmniej jedno pole." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Mechanizm składowania" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Definicja partycji" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new server" msgid "+ Add a value" @@ -13670,6 +13659,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert jest ustawione na 0" +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Wyświetl kierunek dla dodawania/zmiany kolumn" + #~ msgid "Create table on database %s" #~ msgstr "Utwórz nową tabelę w bazie danych %s" diff --git a/po/pt.po b/po/pt.po index d952707644..b9ea0ad0b6 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-08-29 10:54+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" @@ -66,7 +66,7 @@ msgstr "Pesquisar" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Comentário da Base de Dados: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Comentários da tabela" @@ -140,7 +140,7 @@ msgstr "Comentários da tabela" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Coluna" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Tipo" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Nulo" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Omissão" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Links para" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Comentários" @@ -313,14 +313,14 @@ msgstr "Apenas dados" msgid "CREATE DATABASE before copying" msgstr "Criar a Base de Dados antes de copiar (CREATE DATABASE)" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" @@ -335,8 +335,8 @@ msgstr "Mudar para a Base de Dados copiada" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Editar ou exporta o esquema relacional (schema)" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -667,7 +667,7 @@ msgid "Check tables having overhead" msgstr "Verificar tabelas com overhead" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -729,7 +729,7 @@ msgstr "Dicionario de dados" msgid "Tracked tables" msgstr "Tabelas em tracking" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -804,12 +804,12 @@ msgstr "Tracking à tabela" msgid "Database Log" msgstr "Log da Base de Dados" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Valores para a coluna \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Introduza cada valor num campo separado." @@ -1146,7 +1146,7 @@ msgstr "Recarregar Privilégios" msgid "Removing Selected Users" msgstr "Removendo os utilizadores seleccionados" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Fechar" @@ -1154,7 +1154,7 @@ msgstr "Fechar" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Edita" @@ -1366,7 +1366,7 @@ msgstr "Por favor adicione pelo menos uma variável à serie" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1590,7 +1590,7 @@ msgstr "" "Falha ao construir grelha do gráfico com a configuração importada. " "Redefinindo os valores padrão..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1633,7 +1633,7 @@ msgstr "Variável / formula utilizada" msgid "Test" msgstr "Teste" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1765,7 +1765,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2338,7 +2338,7 @@ msgstr "Nenhum indíce definido!" msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2375,7 +2375,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2681,18 +2681,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabelas" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2768,7 +2768,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2840,7 +2840,7 @@ msgstr "Mensagens do MySQL : " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Explicar SQL" @@ -2852,11 +2852,11 @@ msgstr "Saltar Explicar SQL" msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "" @@ -2865,7 +2865,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Saltar a validação SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Validar SQL" @@ -2979,20 +2979,20 @@ msgid "Click to toggle" msgstr "Clique para seleccionar" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Estrutura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3204,7 +3204,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3355,135 +3355,125 @@ msgid "Default display direction" msgstr "Opções de exportação da Base de Dados" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Renomeia a tabela para " -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Manutenção da tabela" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Mostrar Características" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "envia" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Compressão" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3492,71 +3482,71 @@ msgstr "Compressão" msgid "Put columns names in the first row" msgstr "Coloca os nomes dos compos na primeira linha" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Campos delimitados por" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Campos precedidos por" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Substituir NULL por" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linhas terminadas por" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Linhas terminadas por" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edição Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Nome do ficheiro modelo" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Nome do ficheiro modelo" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Nome do ficheiro modelo" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3564,406 +3554,406 @@ msgstr "Nome do ficheiro modelo" msgid "Dump table" msgstr "%s tabela(s)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Incluir a legenda da tabela" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Legenda da tabela" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Continuação da legenda da tabela" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relações" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Tipo de Exportação" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Substituir o(s) ficheiro(s) existente(s)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Nome do ficheiro modelo" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Usar apóstrofes com os nomes das tabelas e campos" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Datas de Criação/Actualização/verificação" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 #, fuzzy msgid "Use delayed inserts" msgstr "Instrucções de inserção múltiplas" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 #, fuzzy msgid "Use ignore inserts" msgstr "Instrucções de inserção múltiplas" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Tipo de Exportação" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Tipo de Exportação" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "Dados CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "Export defaults" msgstr "Importar" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 #, fuzzy msgid "Customize default export options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "General" msgstr "Gerado por" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Importar" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "Servidor" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 #, fuzzy msgid "Servers display options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 #, fuzzy msgid "Tables display options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Documentação" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Página número:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Janela de Query" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 #, fuzzy msgid "Customize query window options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Documentação" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy msgid "Authentication settings" msgstr "Relações" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 #, fuzzy msgid "Customize import defaults" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "Comando SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "Comando SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "Comando SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Histórico SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3971,289 +3961,289 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Estado" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Tabela" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Usar campo de texto" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Substituir os dados da tabela pelos do arquivo" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Coloca os nomes dos compos na primeira linha" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Adicionar valor AUTO_INCREMENT" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 #, fuzzy msgid "Database tree separator" msgstr "Nome do ficheiro modelo" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Tabelas sem tracking" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4261,453 +4251,453 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Maximum databases" msgstr "Sem bases de dados" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Limites do recurso" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alterar a ordem da tabela por" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Janela de Query" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Janela de Query" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Janela de Query" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Renomeia a tabela para " -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Ligações" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Sem tablelas" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 #, fuzzy msgid "PHP extension to use" msgstr "versão do PHP" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Sem bases de dados" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "Escolha do Servidor" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4716,342 +4706,342 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy msgid "Database name" msgstr "Base de Dados" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "Escolha do Servidor" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizar tabela" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Reparar tabela" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Escolha do Servidor" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Mostrando comentários das Colunas" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Itens" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "Automatically create versions" msgstr "Versão do servidor" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "Mostra tabelas" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Mostrar grelha" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Mostrar queries completos" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Estatísticas dos registos" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5059,29 +5049,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 #, fuzzy msgid "Skip locked tables" msgstr "Mostra tabelas" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5091,91 +5081,91 @@ msgstr "" msgid "Password" msgstr "Palavra-passe" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Utilizador :" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Adicionar/Remover Campos" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Defeito" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5183,56 +5173,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5240,13 +5230,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5266,47 +5256,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "dados CSV para MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5479,9 +5469,8 @@ msgstr "Criar uma Página nova" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nome" @@ -5860,7 +5849,7 @@ msgid "Hide" msgstr "Esconder" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformação do navegador" @@ -6746,7 +6735,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7447,7 +7436,7 @@ msgstr "" msgid "Direction" msgstr "Criação" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Tamanho/Valores*" @@ -7738,7 +7727,7 @@ msgstr "Índice" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributos" @@ -8048,7 +8037,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8066,19 +8055,19 @@ msgstr "" "invertida (\"\\\") ou um apóstrofe (\"'\") entre esses valores, coloque uma " "barra invertida antes (por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Índice" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8087,11 +8076,11 @@ msgstr "" "Para uma lista de opções de transformação disponíveis e suas transformações " "MIME-type , clique em %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opções de tranformação" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8103,36 +8092,36 @@ msgstr "" "\") ou uma pelica (\"'\") no meio desses valores, faça-o backslashes (por " "exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nenhum" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primária" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Texto Completo" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8141,27 +8130,27 @@ msgstr "" "Não há descrição disponível para esta transformação.
Pergunte ao autor, " "o que %s faz." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Adiciona novo campo" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Tem que escolher pelo menos uma coluna para mostrar" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Acrescenta um utilizador" diff --git a/po/pt_BR.po b/po/pt_BR.po index 7496560d48..8de6eaa429 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-10 03:20+0200\n" "Last-Translator: \n" "Language-Team: brazilian_portuguese \n" @@ -66,7 +66,7 @@ msgstr "Procurar" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Comentário do Banco de Dados: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Comentários da tabela" @@ -140,7 +140,7 @@ msgstr "Comentários da tabela" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Coluna" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Tipo" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Nulo" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Padrão" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Links para" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Comentários" @@ -313,14 +313,14 @@ msgstr "Dados apenas" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" @@ -335,8 +335,8 @@ msgstr "Mudar para o Banco de Dados copiado" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Editar ou exportar esquema relacional" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -667,7 +667,7 @@ msgid "Check tables having overhead" msgstr "Verificar sobre-carga" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -729,7 +729,7 @@ msgstr "Dicionário de dados" msgid "Tracked tables" msgstr "Tabelas rastreadas" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -804,12 +804,12 @@ msgstr "Monitorar tabela" msgid "Database Log" msgstr "Registro de log do Banco de Dados" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Valores do campo \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Digite cada valor em um campo separado" @@ -1147,7 +1147,7 @@ msgstr "Recarregando privilégios" msgid "Removing Selected Users" msgstr "Remover os usuários selecionados" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Fechar" @@ -1155,7 +1155,7 @@ msgstr "Fechar" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Editar" @@ -1375,7 +1375,7 @@ msgstr "Por favor adicione no mínimo uma variável à série" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1602,7 +1602,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1653,7 +1653,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1783,7 +1783,7 @@ msgstr "Tempo máximo de execução" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2325,7 +2325,7 @@ msgstr "Nenhum índice definido!" msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2363,7 +2363,7 @@ msgstr "" "A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido " "removida." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2670,18 +2670,18 @@ msgid "shared" msgstr "compartilhado" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabelas" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2758,7 +2758,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2830,7 +2830,7 @@ msgstr "Mensagens do MySQL : " msgid "Failed to connect to SQL validator!" msgstr "Falha ao conectar ao validador SQL!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Explicar SQL" @@ -2842,11 +2842,11 @@ msgstr "Pular Explicação SQL" msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Atualizar" @@ -2855,7 +2855,7 @@ msgstr "Atualizar" msgid "Skip Validate SQL" msgstr "Pular validação SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Validar SQL" @@ -2969,20 +2969,20 @@ msgid "Click to toggle" msgstr "Clique para alternar" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Estrutura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3183,7 +3183,7 @@ msgid "Set value: %s" msgstr "Definir valor: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Restaurar valor padrão" @@ -3347,70 +3347,58 @@ msgid "Default display direction" msgstr "Direção de exibição padrão" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] ou um número que indica o número " -"máximo para o qual o modelo vertical é usado" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Aba que é exibida quando entrar em um banco de dados" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Renomear Banco de Dados para" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Aba que é exibida quando entrar em um servidor" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Renomear Banco de Dados para" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Aba que é exibida quando entrar em uma tabela" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Renomear Banco de Dados para" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Mostrar conteúdo binário como HEX por padrão" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Mostrar conteúdo binário como HEX" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Exibir bancos de dados como uma lista ao invés de uma caixa de seleção" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Exibir bancos de dados como uma lista" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" "Exibir lista de servidores como uma lista ao invés de uma caixa de seleção" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Exibir servidores como uma lista" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3418,35 +3406,35 @@ msgstr "" "Desativar operações em massa de manutenção de tabelas, como otimizar ou " "reparar as tabelas selecionadas de um banco de dados." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Desativar a manutenção múltiplas tabelas" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Editar consultas SQL em uma janela popup" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Editar em janela" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Exibir erros" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Reunir erros" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Mostrar ícones para avisos, erros e mensagens e informação" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3454,32 +3442,32 @@ msgstr "" "Define o número de segundos que um script é executado ([kbd]0[/kbd] para sem " "limite)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Tempo máximo de execução" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Salvar como arquivo" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Conjunto de caracteres do arquivo" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formato" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Compressão" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3488,177 +3476,177 @@ msgstr "Compressão" msgid "Put columns names in the first row" msgstr "Colocar nome do campo na primeira linha" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Campos delimitados por" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Campos contornados por" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Substituir NULL por" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Remover caracteres CRLF em colunas" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Colunas terminadas por" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Linhas terminadas por" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Edição do Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Nome do arquivo do modelo" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Nome do arquivo do modelo" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Modelo de nome da tabela" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Esvaziar tabela" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Incluir legenda da tabela" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Leganda da Tabela" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Continuação da legenda da tabela" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Rótulo da chave" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relações" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Método exportar" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Salvar no servidor" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Sobrescrever arquivo(s) existente(s)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Lembrar modelo de nome de arquivo" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Usar crases nos nomes de tabelas e campos" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Modo de compatibilidade SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "CRIAR TABELA opções:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Criar/Atualizar/Verificar datas" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Usar inserções demoradas" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Desabilitar verificação de chaves estrangeiras" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Usar hexadecimal para BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Usar inserções ignoradas" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Sintaxe a utilizar ao inserir dados" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Tamanho máximo da consulta gerada" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Tipo de exportação" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Encapsular exportação numa transação" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Exportar data em UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Forçar conexão segura quando usar phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Forçar conexão SSL" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3667,194 +3655,194 @@ msgstr "" "estrangeira; [kbd]conteúdo[/kbd] é o dado referenciado, [kbd]id[/kbd] é o " "valor da chave" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Ordem da caixa de seleção de chave estrangeira" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" "Uma caixa de seleção será utilizada se poucos itens estiverem presentes" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Limite de chave estrangeira" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Modo de busca" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Personalizar modo de busca" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Personalizar opções padrão" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Desenvolvedor" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Configurações para desenvolvedores phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Modo de edição" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Personalizar modo de edição" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Padrões de exportação" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Personalizar opções de exportação padrão" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funcionalidades" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Geral" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Define algumas opções comumente utilizadas" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Padrões de importação" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Importar / exportar" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Opções de exibição de bancos de dados" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Quadro de navegação" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servidores" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Opções de exibição de servidores" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Opções de exibição de tabelas" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Quadro principal" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Abrir Documento" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Configurações que não se encaixavam em nenhum outro lugar" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Títulos das páginas" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Janela de consulta" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 #, fuzzy msgid "Customize query window options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Segurança" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Configurações básicas" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Autenticação" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Configurações de autenticação" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Configuração do servidor" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3862,72 +3850,72 @@ msgstr "" "Configurações avançadas do servidor, não altere estas opções ao menos que " "você saiba para que elas são" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 #, fuzzy #| msgid "Configuration" msgid "Configuration storage" msgstr "Configuração" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Personalizar opções de exportação" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 #, fuzzy msgid "Customize import defaults" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Consultas SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Caixa de consulta SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Configurações de consultas SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "Validador SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3935,69 +3923,69 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Abas" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Escolha como você quer que as abas funcionem" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Campos de texto" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! texto" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Avisos" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Desative alguns dos avisos mostrados pelo phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Parâmetros extras para o iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -4008,219 +3996,219 @@ msgstr "" "perto do tempo limite. Isso pode ser um bom caminho para importar arquivos " "grandes, entretanto isso pode interromper as transações." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Substituir os dados da tabela pelos do arquivo" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Formato do arquivo importado" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Usar palavra-chave LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Nome das colunas na primeira linha" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Não importe linhas vazias" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Número de registros (consultas) ignoradas no início" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Adicionar valor AUTO_INCREMENT" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Quantas linhas podem ser inseridas de uma vez" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Número de linhas inseridas" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Número mínimo de tabelas para mostrar a caixa de filtro de tabelas" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 #, fuzzy msgid "Database tree separator" msgstr "Nome do arquivo do modelo" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 #, fuzzy msgid "Use light version" msgstr "Usar versão leve" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Tabelas não monitoradas" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 #, fuzzy msgid "Delete all cookies on logout" msgstr "Remover todos os cookies quando a sessão terminar" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4228,448 +4216,448 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Define quanto tempo (em segundos) um cookie de sessão é válido" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Usar ícones na página principal" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Maximum databases" msgstr "Sem bases" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "aviso do mcrypt" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Limite de memória" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Ordem natural" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Usar apenas ícones, apenas texto ou ambos" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Conexões persistentes" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Histórico de consultas permanente" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Quantas consultas são mantidas no histórico" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Tamanho do histórico de consultas" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Altura da janela de consultas (em pixels)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Altura da janela de consultas" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Largura da janela de consultas (em pixels)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Largura da janela de consultas" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Renomear a tabela para" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Processos de reparo" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Exibir botão de ajuda" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "Diretório raiz de dados" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 #, fuzzy msgid "Host authorization order" msgstr "Falha na autenticação de hardware" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 #, fuzzy msgid "Host authorization rules" msgstr "Falha na autenticação de hardware" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Método de autenticação para usar" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Tipo de autenticação" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Tipo de conexão" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Sem tabelas" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Desfragmentar tabela" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desabilitar o uso do INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Qual extensão do PHP utilizar: você deveria utilizar mysqli se suportado" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Utilizar a extensão do PHP" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Ocultar bancos de dados" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "nome do servidor" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Tentando conectar sem senha" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4678,337 +4666,337 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Nome do banco de dados" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Porta do servidor" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizar tabela" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Reparar tabela" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "comando SHOW DATABASES" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Socket do servidor" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Utilizar SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Exibindo comentários da coluna" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Preferências visuais da tabela" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Adicionar DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Adicionar DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Adicionar DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Comandos" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Criar versões automáticamente" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Permitir mostrar todas as linhas" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Exibir tabelas abertas" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show indexes" msgid "Show hint" msgstr "Mostrar índices" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Exibir link para o phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Exibir informações detalhadas do servidor MySQL" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Mostrar consultas SQL" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Mostrar estatísticas" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5016,29 +5004,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Mostrar comentários das tabelas em tooltips" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 #, fuzzy msgid "Skip locked tables" msgstr "Exibir tabelas abertas" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5048,88 +5036,88 @@ msgstr "" msgid "Password" msgstr "Senha" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Usuário" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Aviso do Suhosin" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Adicionar/Remover colunas" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Título padrão" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5137,57 +5125,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 #, fuzzy msgid "Upload directory" msgstr "Diretório de upload" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5195,13 +5183,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5224,47 +5212,47 @@ msgstr "Autenticação PHP" msgid "Signon authentication" msgstr "Falha na autenticação de hardware" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Planilha Open Document" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV para dados MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Abrir Documento de Texto" @@ -5444,9 +5432,8 @@ msgstr "Criar tabela" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nome" @@ -5821,7 +5808,7 @@ msgid "Hide" msgstr "Ocultar" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformações do navegador" @@ -6721,7 +6708,7 @@ msgstr "Contador de campo inválido na linha %d da entrada CSV." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Nome da Tabela" @@ -7434,7 +7421,7 @@ msgstr "" msgid "Direction" msgstr "Links diretos" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Tamanho/Definir*" @@ -7736,7 +7723,7 @@ msgstr "Tabela de conteúdos" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributos" @@ -8046,7 +8033,7 @@ msgstr "Tabela para estar vazia!" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8064,7 +8051,7 @@ msgstr "" "(\"\\\") ou aspas simples (\"'\") entre os valores, coloque uma barra " "contrária antes (por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8072,13 +8059,13 @@ msgstr "" "Para valores padrão, digite um valor simples, sem barras de escape ou aspas, " "use este formato: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Índice" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8087,11 +8074,11 @@ msgstr "" "Para uma lista de opções de transformação disponíveis e suas transformações " "MIME-type, clique em %sdescrição de transformações%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opções de transformação" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8103,36 +8090,36 @@ msgstr "" "ou aspas (\"'\") no meio desses valores, faça-o usando outra contra-barra " "(por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nenhum" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Como definido:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primária" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Texto completo" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8141,28 +8128,28 @@ msgstr "" "Sem descrição disponível para essa transformação.
Pergunte ao autor o " "que %s faz." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Adicionar %s campo(s)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Você deve adicionar pelo menos um campo." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Definição da PARTIÇÃO" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Adicionar um valor" @@ -13096,6 +13083,13 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] ou um número que indica o " +#~ "número máximo para o qual o modelo vertical é usado" + #~ msgid "Create table on database %s" #~ msgstr "Criar nova tabela no Banco de Dados %s" diff --git a/po/ro.po b/po/ro.po index dc2f71d438..9bb578f2d9 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" @@ -67,7 +67,7 @@ msgstr "Caută" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -131,7 +131,7 @@ msgid "Database comment: " msgstr "Comentarii referitoare la baza de date: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Comentarii tabel" @@ -141,7 +141,7 @@ msgstr "Comentarii tabel" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -159,7 +159,7 @@ msgstr "Denumirile coloanelor" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -171,7 +171,7 @@ msgstr "Tip" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -182,7 +182,7 @@ msgstr "Nul" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Setare de bază" @@ -196,13 +196,13 @@ msgid "Links to" msgstr "Trimitere la" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Comentarii" @@ -319,14 +319,14 @@ msgstr "Numai date" msgid "CREATE DATABASE before copying" msgstr "CREEAZĂ BAZA DE DATE înainte de copiere" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Adăugare %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" @@ -341,8 +341,8 @@ msgstr "Schimbă la tabela copiată" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -368,7 +368,7 @@ msgid "Edit or export relational schema" msgstr "Schema relațională" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -694,7 +694,7 @@ msgid "Check tables having overhead" msgstr "Verificare depășit" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -762,7 +762,7 @@ msgstr "Dicționar de date" msgid "Tracked tables" msgstr "Tabelele urmărite" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -844,12 +844,12 @@ msgstr "Tabele monitorizate" msgid "Database Log" msgstr "Jurnalul (log) bazei de date" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1206,7 +1206,7 @@ msgstr "Reîncărcarea drepturilor" msgid "Removing Selected Users" msgstr "Eliminarea utilizatorilor selectați" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1214,7 +1214,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Editare" @@ -1460,7 +1460,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1685,7 +1685,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1736,7 +1736,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1894,7 +1894,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2465,7 +2465,7 @@ msgstr "Index nu este definit!" msgid "Indexes" msgstr "Indexuri" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2501,7 +2501,7 @@ msgid "" "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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2824,18 +2824,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabele" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2918,7 +2918,7 @@ msgstr "" "Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația " "dumneavoastră." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2991,7 +2991,7 @@ msgstr "MySQL zice: " msgid "Failed to connect to SQL validator!" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Explică SQL" @@ -3003,11 +3003,11 @@ msgstr "Sari peste explicarea SQL" msgid "Without PHP Code" msgstr "fără cod PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Creează cod PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Reîncarcă" @@ -3016,7 +3016,7 @@ msgstr "Reîncarcă" msgid "Skip Validate SQL" msgstr "Sari peste validarea SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Validează SQL" @@ -3134,20 +3134,20 @@ msgid "Click to toggle" msgstr "Click pentru a selecta" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Structură" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3360,7 +3360,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3512,138 +3512,128 @@ msgid "Default display direction" msgstr "Opțiuni de afișare a bazelor de date" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Redenumire bază de date în" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Redenumire bază de date în" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Redenumire bază de date în" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Administrare tabel" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Editează rîndul următor" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Arată facilitățile" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Trimite" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Setul de caractere al fișierului" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Compresie" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3652,71 +3642,71 @@ msgstr "Compresie" msgid "Put columns names in the first row" msgstr "Pune numele cîmpului în primul rînd" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Cîmpuri încadrate de" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Cîmpuri realizate de" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Înlocuire NULL cu" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linii terminate de" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Linii terminate de" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Ediția Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Șablon nume fișier" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Șablon nume fișier" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Șablon nume fișier" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3724,405 +3714,405 @@ msgstr "Șablon nume fișier" msgid "Dump table" msgstr "%s tabele" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Include captură tabel" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Captură tabel" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Continuare captură tabel" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Tasta label" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Tip MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Legături" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Modul de export" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Salvează pe server" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Suprascrie fișier(e) existent(e)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Șablon nume fișier" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Utilizati apostroful pentru numele tabelelor și a campurilor" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Regim de compatibilitate SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Creare/reînnoire/verificare date" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Folosește inserări întîrziate" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Dezactivare verificări de cheie străine" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Folosește hexazecimale pentru BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Utilizați ignorare inserări" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Lungimea maximă a interogării create" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Modul de export" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Cuprinde exportarea într-o tranzacție" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Modul de export" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 #, fuzzy msgid "Force SSL connection" msgstr "Comprimă conexiunea" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Regim de navigare" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Personalizează regimul de navigare" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Regim de redactare" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Personalizează regimul de redactare" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "Export defaults" msgstr "Import fișiere" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 #, fuzzy msgid "Customize default export options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funcționalități" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generează" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Import fișiere" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Import / export" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Opțiuni de afișare a bazelor de date" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Personalizează aspectul cadrului de navigare" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servere" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 #, fuzzy msgid "Servers display options" msgstr "Opțiuni de afișare a tabelelor" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Opțiuni de afișare a tabelelor" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Cadrul principal" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Text Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Numărul paginii:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 #, fuzzy msgid "Customize query window options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Tipul autentificării" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Tipul autentificării" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 #, fuzzy msgid "Customize import defaults" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 #, fuzzy msgid "Customize navigation frame" msgstr "Personalizează cadrul principal" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Personalizează cadrul principal" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "Comanda SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "Comanda SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "Comanda SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Istoric SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4130,71 +4120,71 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Stare" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "File" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Alegeți cum doriți să funcționeze filele" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Utilizare cîmp text" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -4205,222 +4195,222 @@ msgstr "" "apropie de limita de timp. Aceasta poate fi o metodă bună de a importa " "fișiere mari, deși poate strica tranzacții." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Înlocuiește datele tabelului cu fișier" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Formatul fișierului importat" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Folosește cuvîntul-cheie LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Pune numele cîmpului în primul rînd" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Number of records(queries) to skip from start" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 #, fuzzy msgid "Number of inserted rows" msgstr "Numărul de rînduri sortate." -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "Numărul de tabele ce sînt deschise." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 #, fuzzy msgid "Database tree separator" msgstr "Șablon nume fișier" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 #, fuzzy msgid "Use light version" msgstr "Versiunea clientului MySQL" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Recently used tables" msgstr "Tabele fără monitorizare" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4428,456 +4418,456 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Maximum databases" msgstr "Ascunde baze de date" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 #, fuzzy msgid "Maximum tables" msgstr "Ascunde baze de date" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Limitare de resurse" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alterare „ordonare tabel după”" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Redenumire tabel la" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Repară firele de execuție" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "Directorul de bază pentru date" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 #, fuzzy msgid "Host authorization order" msgstr "Tipul autentificării" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 #, fuzzy msgid "Host authorization rules" msgstr "Hardware authentication failed" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Permite autentificarea ca „root”" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Metoda de autentificare de utilizat" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Tipul autentificării" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Comprimă conexiunea" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Tipul conexiunii" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Nu există tabele" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Defragmentare tabel" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Extensia PHP de utilizat" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Ascunde baze de date" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Numele de gazdă al serverului" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Încearcă conectarea fără parolă" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Conectează fără parolă" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4886,348 +4876,348 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Lăsați gol dacă nu utilizați „config auth”" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Parola pentru „config auth”" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nume bază de date" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Portul la care ascultă serverul MySQL, lăsați gol pentru implicit" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Portul serverului" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizare tabel" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Reparare tabel" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 #, fuzzy msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Portul la care ascultă serverul MySQL, lăsați gol pentru implicit" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Soclul serverului" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Utilizează SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Arată comentariile coloanei" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentare tabel" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Comenzi" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Regim de recuperare automată" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Utilizator pentru „config auth”" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Databases display options" msgid "Show display direction" msgstr "Opțiuni de afișare a bazelor de date" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Afișează tabele deschise" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Arată grila" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Afișare comandă întreagă" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Statisticile rîndului" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5235,29 +5225,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 #, fuzzy msgid "Skip locked tables" msgstr "Afișează tabele deschise" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5267,90 +5257,90 @@ msgstr "" msgid "Password" msgstr "Parola" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Nume utilizator:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Adaugă/șterge coloane" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy msgid "Default title" msgstr "Redenumire bază de date în" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5358,57 +5348,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 #, fuzzy msgid "Upload directory" msgstr "Directorul de bază pentru date" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5416,13 +5406,13 @@ msgstr "" msgid "Version check" msgstr "Verificarea versiunii" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5446,49 +5436,49 @@ msgstr "Tipul autentificării" msgid "Signon authentication" msgstr "Tipul autentificării" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV folosind LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Foaie de calcul Open Document" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Culoare personalizată" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "Date CSV pentru MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Text Open Document" @@ -5665,9 +5655,8 @@ msgstr "Creare tabel" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nume" @@ -6069,7 +6058,7 @@ msgid "Hide" msgstr "Ascunde" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformare navigator" @@ -7012,7 +7001,7 @@ msgstr "Invalid field count in CSV input on line %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Denumire tabel" @@ -7724,7 +7713,7 @@ msgstr "" msgid "Direction" msgstr "Legături directe" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Lungime/Setare" @@ -8029,7 +8018,7 @@ msgstr "Sumar" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Proprietăți" @@ -8341,7 +8330,7 @@ msgstr "Tabelul pare a fi gol!" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8359,7 +8348,7 @@ msgstr "" "(backslash) (\"\\\") sau semnul (\"'\") la aceste valori, folosiți exemplul " "( '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8367,13 +8356,13 @@ msgstr "" "Pentru valorile implicite, vă rugăm să introduceți o singură valoare, fără " "backslash, escape sau ghilimele, folosind formatul: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Index" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8382,11 +8371,11 @@ msgstr "" "Pentru lista opțiunilor de transformare disponibile și transformările MIME-" "type, apăsați pe %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opțiuni de transformare" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8398,36 +8387,36 @@ msgstr "" "sau apostrof (\"'\") in aceste valori, introduceți backslash-uri (ex. '\\" "\\xyz' sau 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nici unul(a)" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Conform definiției:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primar" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Tot textul" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8436,28 +8425,28 @@ msgstr "" "Nu este disponibilă nici o descriere pentru această transformare.
Întrebați autorul de funcțiile îndeplinite de %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Adaugă %s cîmp(uri)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Trebuie să adăugați cel puțin un cîmp." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Motor de stocare" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Definiție PARTIȚIE" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new server" msgid "+ Add a value" diff --git a/po/ru.po b/po/ru.po index 77c143f50c..356c2909cb 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-10-02 18:59+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" @@ -67,7 +67,7 @@ msgstr "Поиск" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -131,7 +131,7 @@ msgid "Database comment: " msgstr "Комментарий к базе данных:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Комментарий к таблице" @@ -141,7 +141,7 @@ msgstr "Комментарий к таблице" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -157,7 +157,7 @@ msgstr "Поле" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -169,7 +169,7 @@ msgstr "Тип" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -180,7 +180,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "По умолчанию" @@ -194,13 +194,13 @@ msgid "Links to" msgstr "Связи" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Комментарии" @@ -314,14 +314,14 @@ msgstr "Только данные" msgid "CREATE DATABASE before copying" msgstr "Перед копированием создать базу данных (CREATE DATABASE)" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Добавить %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" @@ -336,8 +336,8 @@ msgstr "Переключиться на скопированную базу да #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -358,7 +358,7 @@ msgid "Edit or export relational schema" msgstr "Редакция или экспорт схемы связей" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -672,7 +672,7 @@ msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -734,7 +734,7 @@ msgstr "Словарь данных" msgid "Tracked tables" msgstr "Отслеживаемые таблицы" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -809,12 +809,12 @@ msgstr "Отслеживать таблицу" msgid "Database Log" msgstr "Журнал базы данных" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Значения для поля \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Добавьте каждое значение в отдельное поле." @@ -1143,7 +1143,7 @@ msgstr "Перезагрузка привилегий" msgid "Removing Selected Users" msgstr "Удаление выбранных пользователей" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Закрыть" @@ -1151,7 +1151,7 @@ msgstr "Закрыть" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Изменить" @@ -1367,7 +1367,7 @@ msgstr "Пожалуйста, добавьте в серию хотя бы од #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1596,7 +1596,7 @@ msgstr "" "Ошибка построения сетки графика из импортированной конфигурации. Сброшено на " "изначальную конфигурацию..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1639,7 +1639,7 @@ msgstr "Использованная переменная / формула" msgid "Test" msgstr "Тест" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1767,7 +1767,7 @@ msgstr "Время выполнения запроса" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2294,7 +2294,7 @@ msgstr "Индекс не определен!" msgid "Indexes" msgstr "Индексы" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2330,7 +2330,7 @@ msgid "" "removed." msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2641,18 +2641,18 @@ msgid "shared" msgstr "общий" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Таблицы" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2730,7 +2730,7 @@ msgstr "" "Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в " "конфигурационном файле phpMyAdmin." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2803,7 +2803,7 @@ msgstr "Ответ MySQL: " msgid "Failed to connect to SQL validator!" msgstr "Невозможно соединиться с SQL валидатором!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Анализ SQL запроса" @@ -2815,11 +2815,11 @@ msgstr "Убрать анализ SQL" msgid "Without PHP Code" msgstr "Убрать PHP-код" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Обновить" @@ -2828,7 +2828,7 @@ msgstr "Обновить" msgid "Skip Validate SQL" msgstr "Убрать проверку синтаксиса SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Проверка синтаксиса" @@ -2933,20 +2933,20 @@ msgid "Click to toggle" msgstr "Кликните для переключения" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3145,7 +3145,7 @@ msgid "Set value: %s" msgstr "Установить значение: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Восстановить изначальное значение" @@ -3309,69 +3309,57 @@ msgid "Default display direction" msgstr "Вид отображения по умолчанию" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] либо число определяющее " -"максимальное количество при котором используется вертикальный режим" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Вид отображения столбцов при их редакции/создании" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Вкладка отображаемая при выборе базы данных" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Вкладка по умолчанию для базы данных" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Вкладка отображаемая при входе на сервер" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Вкладка по умолчанию для сервера" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Вкладка отображаемая при выборе таблицы" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Вкладка по умолчанию для таблицы" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Показывать двоичные данные по умолчанию в шестнадцатеричном виде (HEX)" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Показывать бинарные данные в виде HEX значений" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" "Выводить базы данных в виде последовательного списка вместо выпадающего" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Отображать базы данных списком" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" "Выводить доступные для выбора серверы в виде последовательного списка вместо " "выпадающего" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Выводить серверы списком" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3379,37 +3367,37 @@ msgstr "" "Отключить массовые операции обслуживания, такие как оптимизация или " "восстановление выбранных таблиц базы данных." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Отключить операции обслуживания таблиц" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Редактировать SQL запросы во всплывающем окне" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Редактировать в окне" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Выводить ошибки" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Собирать ошибки" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" "Отображать пиктограммы для сообщений об ошибках, а так же для " "предупреждающих и информационных сообщений" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Пиктограммы сообщений об ошибках" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3417,207 +3405,207 @@ msgstr "" "Установите максимальное количество секунд, в течении которых скрипт может " "работать ([kbd]0[/kbd] без ограничения)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Максимальное время выполнения" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Сохранить как файл" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Кодировка файла" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Упаковать" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Поместить названия полей в первой строке" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Значения полей обрамлены" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Символ экранирования" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Заменить NULL на" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Удалить из полей символы перевода строки CRLF" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Разделитель столбцов" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Разделитель строк" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Версия Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Шаблон имени базы данных" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Шаблон имени сервера" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Шаблон имени таблицы" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Сохранение таблицы" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Добавить заголовок таблицы" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Заголовок таблицы" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Заголовок таблицы (продолжение)" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Идентификатор метки" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-тип" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Связи" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Метод экспорта" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Сохранить на сервере" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Перезаписать существующий(е) файл(ы)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Запомнить шаблон имени файла" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Заключить названия таблиц и полей в косые кавычки" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Режим совместимости SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "Параметры CREATE TABLE:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Даты создания, обновления и проверки" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Использовать отложенные вставки (DELAYED)" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Отключить проверку внешних ключей" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Использовать шестнадцатеричное отображение для полей типа BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Использовать игнорирующие вставки (IGNORE)" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Использовать синтаксис при вставке данных" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Максимальная длина создаваемого запроса" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Тип экспорта" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Заключить экспорт в транзакцию" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Экспорт времени в UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" "При использовании phpMyAdmin предпочитать использование безопасного " "соединения" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Предпочитать SSL соединение" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3625,150 +3613,150 @@ msgstr "" "Порядок сортировки значений в списке внешних ключей. [kbd]content[/kbd] - " "ссылочные данные, [kbd]id[/kbd] - значение ключа" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Сортировка внешних ключей" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" "Если значений меньше указанного, то они будут выведены в виде выпадающего " "списка" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Лимит внешних ключей" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Обзор" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Настройка режима обзора данных" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Настройте параметры экспорта используемые по умолчанию" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Разработчик" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Настройки для разработчиков phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Редакция" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Настройка режима редакции данных" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Экспорт" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Настройте параметры экспорта используемые по умолчанию" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Настройки" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Общие" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Настройте некоторые основные параметры" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Импорт" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Настройте параметры импорта используемые по умолчанию" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Импорт / экспорт" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Установите директории импорта и экспорта, а так же параметры архивации" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Параметры отображения списка баз данных" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Фрейм навигации" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Настройки отображения фрейма навигации" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Сервера" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Параметры отображения списка серверов" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Параметры отображения списка таблиц" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Основной фрейм" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Другие настройки ядра" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Настройки не попадающие в другие разделы" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Заголовки страниц" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3778,22 +3766,22 @@ msgstr "" "подставные строки, которые описаны в [a@Documentation.html#cfg_TitleTable]" "документации[/a]." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Окно запроса" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Настройте параметры окна запросов" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Безопасность" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3801,23 +3789,23 @@ msgstr "" "Пожалуйста, обратите внимание, что phpMyAdmin - это только веб-интерфейс и " "его настройки не ограничивают доступ к самой MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Основные настройки" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Идентификация" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Настройки идентификации" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Параметры сервера" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3825,15 +3813,15 @@ msgstr "" "Расширенное управление сервером. Не изменяйте данные параметры без " "достаточного понимания их назначения." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Введите параметры соединения сервера" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Хранение конфигурации" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3843,11 +3831,11 @@ msgstr "" "документации раздел описывающий [a@Documentation.html#linked-tables]хранение " "конфигурации[/a]" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Слежение за изменениями" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3855,44 +3843,44 @@ msgstr "" "Слежение за изменениями произведенными в базе данных. Для работы требуется " "настройка хранения конфигурации phpMyAdmin." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Модифицировать параметры экспорта" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Модифицировать изначальлные настройки импорта" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Модифицировать фрейм навигации" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Модифицировать основной фрейм" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL запросы" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL Запрос" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Настройте ссылки выводимые в блоке SQL запросов" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Настройки SQL запросов" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "Валидатор SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3904,43 +3892,43 @@ msgstr "" "[a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 " "Upright Database Technology. Все права сохранены.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Главная" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Настройка отображения главной страницы" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Вкладки" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Настройте отображение вкладок" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Текстовые поля" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Настройте отображение текстовых полей" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! текст" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Предупреждения" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Отключение некоторых предупреждений выводимых phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3948,15 +3936,15 @@ msgstr "" "Включить [a@http://ru.wikipedia.org/wiki/Gzip]gzip[/a] архивирование для " "операций импорта и экспорта" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Добавочные параметры iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3964,11 +3952,11 @@ msgstr "" "В случае включения данного параметра, phpMyAdmin продолжит выполнение " "составного запроса, даже если одно из выражений вернет ошибку" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Игнорировать ошибки составных запросов" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3978,21 +3966,21 @@ msgstr "" "временного лимита на выполнение скрипта. Может помочь при импорте файлов " "большого размера, однако небезопасно для транзакций." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Частичный импорт: разрешает прерывание" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Не прерывать при возникновении ошибки во время выполнения INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Заместить данные таблицы данными из файла" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4000,88 +3988,88 @@ msgstr "" "Формат по умолчанию; обратите внимание, что список форматов зависит от " "положения (база данных, таблица) и только SQL доступен в любом случае" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Формат импортируемого файла" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Использовать ключевое слово LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Имена таблиц в первой строке" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Пропускать пустые строки" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Импортировать денежные единицы (5.00 вместо $5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Импортировать проценты в виде десятичных значений (.12 вместо 12.00%)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Количество запросов пропускаемых от начала" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Частичный импорт: пропуск запросов" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Не использовать AUTO_INCREMENT для нулевых значений" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Исходное положение раскрывающихся блоков" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Количество строк при вставке за один раз" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Количество строк при вставке" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Цель иконки быстрого доступа" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Отображать логотип в левом фрейме" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Выводить логотип" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Отображать вверху левого фрейма список доступных серверов" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Отображать выбор сервера" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Минимальное количество таблиц для отображения поля фильтра" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Строка разделяющая базы данных на различные уровни дерева" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Разделитель дерева баз данных" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4089,39 +4077,39 @@ msgstr "" "Только в облегченном варианте; отображать базы данных в виде дерева " "(определяется указанием разделителя ниже)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Отображать базы данных в виде дерева" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Отключите данную функцию, если хотите видеть все базы данных сразу" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Облегченный вариант" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Максимальная глубина дерева таблиц" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Строка разделяющая таблицы на различные уровни дерева" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Разделитель дерева таблиц" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL на который будет ссылаться логотип из фрейма навигации" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "URL ссылка логотипа" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4129,48 +4117,48 @@ msgstr "" "Открывать ссылку в основном окне ([kbd]main[/kbd]) или в новом ([kbd]new[/" "kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Цель ссылки логотипа" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Подсвечивать сервер при наведении курсора" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Включить подсветку" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" "Максимальное количество недавно использованных таблиц; для отключения " "установить 0" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Недавно использованные таблицы" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Выводить вкладки менее насыщенные графическими элементами" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Облегченные вкладки" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Максимальное количество символов отображаемых в любом нечисловом поле в " "режиме обзора" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Ограничить по количеству символов в поле" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4181,11 +4169,11 @@ msgstr "" "значения в FALSE можно легко забыть отключиться от других серверов при " "множественном подключении." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Удалить все cookies при выходе" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4193,11 +4181,11 @@ msgstr "" "Определяет необходимость выводить имя пользователя от предыдущего " "подключения при использовании cookie идентификации" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Выводить имя пользователя" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4210,56 +4198,56 @@ msgstr "" "закрытия окна браузера. Хранение в течении сессии рекомендуется для " "использования в недружественном окружении." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Хранение cookie" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Определяет длительность (в секундах) действия cookie идентификации" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Срок действия cookie" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" "Двойное увеличение размера текстового поля для столбцов имеющих тип LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Увеличение текстового поля для LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Отображать пиктограммы на главной странице" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" "Максимальное количество символов используемых при отображении SQL запроса" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Максимальная длинна отображаемого SQL" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Пользователи не смогут установить более высокое значение" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Максимальное количество баз данных отображаемых в левом фрейме и списке баз " "данных" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Максимальное количество баз данных" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4268,19 +4256,19 @@ msgstr "" "Количество строк при выводе результата запроса. Если строк больше, то будут " "выведены ссылки перелистывания страниц." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Максимальное количество строк" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Максимальное количество таблиц отображаемых в списке" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Максимальное количество таблиц" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4288,11 +4276,11 @@ msgstr "" "Отключить отображение предупреждения при отсутствии mcrypt, необходимого для " "идентификации методом cookie" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "Предупреждение о mcrypt" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4300,44 +4288,44 @@ msgstr "" "Максимальное количество байт, которые могут быть выделены скрипту. Пример: " "[kbd]32M[/kbd] ([kbd]0[/kbd] без ограничений)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Лимит памяти" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "Ссылки редактирования, копирования и удаления" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Где вывести ссылки строки таблицы" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Использовать естественный порядок сортировки имен таблиц и баз данных" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Порядок сортировки" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Использовать только иконки, только текст, или все вместе" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Иконки в строке навигации" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Используйте буферизацию вывода GZip для увеличения передачи данных по HTTP" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Буферизация вывода GZip" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4345,19 +4333,19 @@ msgstr "" "[kbd]SMART[/kbd] - означает обратный порядок сортировки для полей имеющих " "тип TIME, DATE, DATETIME и TIMESTAMP; в ином случае порядок будет прямой" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Порядок сортировки" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Использовать постоянные соединения с базами данных MySQL" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Постоянные соединения" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4366,23 +4354,23 @@ msgstr "" "Отключить предупреждение отображаемое на странице структуры базы данных при " "отсутствии таблиц необходимых для хранения конфигурации phpMyAdmin" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Отсутствие таблиц хранения конфигурации phpMyAdmin" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Иконки операций над таблицами" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Запретить возможность редактирования данных полей типа BLOB и BINARY" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Защитить бинарные данные" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4392,123 +4380,123 @@ msgstr "" "настройка расширений phpMyAdmin). При отключении, для истории запросов " "используется JavaScript (история теряется при закрытии окна)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Постоянная история запросов" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Количество запросов хранимых в истории" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Длинна истории запросов" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" "Вкладка отображаемая при открытии нового всплывающего окна выполнения " "запросов" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Вкладка по умолчанию для окна запросов" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Высота окна запроса (в пикселях)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Высота окна запроса" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Ширина окна запроса (в пикселях)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Ширина окна запроса" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Выберите функцию, которая будет использоваться при перекодировании" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Механизм перекодирования" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "При просмотре таблиц, запоминается сортировка каждой таблицы" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Запоминать сортировку таблиц" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Повторять заголовки через каждые X ячеек; [kbd]0[/kbd] отключает данную " "функцию" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Повтор заголовков" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Отобразить кнопку помощи вместо текста Документация" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Отобразить кнопку помощи" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "Сохранить все отредактированные ячейки сразу" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Каталог на сервере, в который можно сохранять файлы при экспорте" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Каталог сохранения" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Оставьте поле пустым, если не используете данную функцию" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Последовательность идентификации хоста" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Оставьте поле пустым для использования значения по умолчанию" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Правила идентификации хоста" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Разрешать подключения без пароля" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Разрешить вход под root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "Отображаемая строка при идентификации методом HTTP" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "Область HTTP" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4518,19 +4506,19 @@ msgstr "" "идентификации SweKey[/a] (пример, если располагается ниже корня хоста: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "Конфигурационный файл SweKey" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Используемый метод идентификации" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Тип идентификации" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4538,11 +4526,11 @@ msgstr "" "Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/bookmark]закладок" "[/a] оставьте поле пустым. Рекомендуется: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Таблица закладок" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4550,31 +4538,31 @@ msgstr "" "Для отключения поддержки комментариев/mime-типов полей оставьте поле пустым. " "Рекомендуется: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Таблица информации полей" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Соединение с сервером MySQL с использованием сжатия данных" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Соединение со сжатием" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Способ соединения с сервером. Если не уверены, оставьте [kbd]tcp[/kbd]" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Тип соединения" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Пароль выделенного пользователя" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4582,19 +4570,19 @@ msgstr "" "Специальный пользователь MySQL с ограниченными привилегиями. Подробнее " "смотрите на [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Выделенный пользователь" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "При выводе баз данных показывать количество таблиц в них" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Подсчитывать таблицы" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4602,11 +4590,11 @@ msgstr "" "Для отключения поддержки Дизайнера Связей оставьте поле пустым. " "Рекомендуется: [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Таблица Дизайнера" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4614,29 +4602,29 @@ msgstr "" "Подробнее смотрите на [a@http://sf.net/support/tracker.php?aid=1849494]PMA " "bug tracker[/a] и [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Отключить использование INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Выберите какое расширение PHP использовать для работы с MySQL. При " "возможности, используйте mysqli." -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "PHP расширение" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Скрыть базы данных подпадающие под регулярное выражение (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Скрыть базы данных" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4644,23 +4632,23 @@ msgstr "" "Для отключения поддержки истории SQL запросов оставьте поле пустым. " "Рекомендуется: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Таблица истории SQL запросов" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Хост на котором работает сервер MySQL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Хост сервера" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "URL выхода" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" @@ -4668,22 +4656,22 @@ msgstr "" "Данная настройка проверяет сохранение только N (N = MaxTableUiprefs) новых " "записей в \"table_uiprefs\" и автоматически удалит устаревшие записи" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" "Максимальное количество записей сохраняемых в таблице \"table_uiprefs\"" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" "Пытаться установить соединение без пароля, если пароль не был принят при " "идентификации" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Соединять без пароля" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4698,30 +4686,30 @@ msgstr "" "определенном порядке и использовать [kbd]*[/kbd] в конце для вывода " "оставшихся в алфавитном порядке." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Показывать только базы данных из списка" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Если не используется идентификация config, оставьте поле пустым" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Прописанный пароль" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Для отключения поддержки PDF схемы оставьте поле пустым. Рекомендуется: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF схема: страницы таблицы" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4732,21 +4720,21 @@ msgstr "" "pmadb[/a]. Для отключения поддержки, оставьте поле пустым. Рекомендуется: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Имя базы данных" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Порт на котором работает сервер MySQL. Для значения по умолчанию, оставьте " "пустым." -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Порт сервера" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4754,11 +4742,11 @@ msgstr "" "Для отключения возможности просмотра недавно использованных таблиц, оставьте " "поле пустым. Рекомендуется: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Недавно использованная таблица" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4767,19 +4755,19 @@ msgstr "" "связанных таблиц[/a] оставьте поле пустым. Рекомендуется: [kbd]pma_relation[/" "kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Таблица связей" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "SQL команда для выборки доступных баз данных" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "Команда SHOW DATABASES" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4787,44 +4775,44 @@ msgstr "" "Для примера смотрите раздел [a@http://wiki.phpmyadmin.net/pma/" "auth_types#signon]типы идентификации[/a]" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Имя сессии для Signon" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Сокет на котором работает сервер MySQL. Для значения по умолчанию, оставьте " "пустым." -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Сокет сервера" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Использовать SSL для соединения с MySQL" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Использовать SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Для отключения поддержки PDF схемы оставьте поле пустым. Рекомендуется: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF схема: координаты таблиц" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4832,11 +4820,11 @@ msgstr "" "Таблица для описания отображаемых полей. Для отключения поддержки данной " "функции оставьте поле пустым. Рекомендуется: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Таблица с описаниями полей" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4844,11 +4832,11 @@ msgstr "" "Для отключения возможности хранения настроек интерфейса таблиц, оставьте " "поле пустым. Рекомендуется: [kbd]pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Таблица хранения настроек интерфейса" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4856,11 +4844,11 @@ msgstr "" "Будет ли при создании базы данных, в журнал первой строкой добавлено " "выражение DROP DATABASE IF EXISTS." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Добавить DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4868,11 +4856,11 @@ msgstr "" "Будет ли при создании таблицы, в журнал первой строкой добавлено выражение " "DROP TABLE IF EXISTS." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Добавить DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4880,21 +4868,21 @@ msgstr "" "Будет ли при создании представления, в журнал первой строкой добавлено " "выражение DROP VIEW IF EXISTS." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Добавить DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Определить список выражений используемых для автоматического создания новых " "версий." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Слежение за выражениями" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4902,11 +4890,11 @@ msgstr "" "Для отключения поддержки слежения за SQL запросами оставьте поле пустым. " "Рекомендуется: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Таблица слежения за SQL запросами" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4914,11 +4902,11 @@ msgstr "" "Должен ли механизм слежения создавать версии таблиц и представлений " "автоматически." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Автоматическое создание версий" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" @@ -4926,15 +4914,15 @@ msgstr "" "Если не желаете использовать функцию хранения пользовательских настроек в " "базе данных, оставьте пустым. Рекомендуется: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Таблица хранения настроек пользователя" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Прописанный пользователь" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4943,11 +4931,11 @@ msgstr "" "нуждаются в обновлении. Это предотвратит лишние проверки совместимости и " "соответственно увеличит производительность." -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Повторная проверка" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4955,20 +4943,20 @@ msgstr "" "Пользовательское описание сервера. Оставьте пустым, чтобы вывести название " "хоста." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Пользовательское имя сервера" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Позволяет вывести пользователю кнопку "показать все (записи)"" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Разрешать вывод всех строк" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4979,25 +4967,25 @@ msgstr "" "прописанного пароля. Смена пароля в конфигурационном файле напрямую никак не " "ограничена." -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Вывести форму изменения пароля" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Вывести форму создания базы данных" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "Определяет направление отображения при просмотре данных таблицы" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Показать направление отображения" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -5005,27 +4993,27 @@ msgstr "" "Определяет изначальное отображение типа полей в режиме редакции или вставки " "данных" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Отображение типа полей" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Выводить поля функций в режиме редактирования или вставки" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Выводить поля функций" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "Показать или скрыть подсказки" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "Показать подсказку" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5033,33 +5021,33 @@ msgstr "" "Вывести ссылку для отображения [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Вывести ссылку на phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Вывести подробную информацию по MySQL серверу" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Определяет вывод SQL запросов генерируемых phpMyAdmin" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Показывать SQL запросы" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Разрешить вывод статистики по базам данных и таблицам (например, объем " "занятого пространства)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Показывать статистику" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5067,11 +5055,11 @@ msgstr "" "Если включен вывод всплывающих подсказок и установлен вывод комментария, " "произойдет взаимная замена комментария и имени базы данных" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Выводить вместо имени базы данных ее комментарий" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5082,30 +5070,30 @@ msgstr "" "корневого значения, разделенных указанной в директиве $cfg" "['LeftFrameTableSeparator'] строкой, таблиц" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Комментарий таблицы вместо имени" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Комментарии таблицы во всплывающих подсказках" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Отмечать использованные таблицы и делать возможным отображение баз данных с " "заблокированными таблицами" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Пропускать заблокированные таблицы" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Требуется подключенный SQL валидатор" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5115,7 +5103,7 @@ msgstr "Требуется подключенный SQL валидатор" msgid "Password" msgstr "Пароль" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5123,11 +5111,11 @@ msgstr "" "[strong]Внимание:[/strong] требуется расширение PHP SOAP, либо установленный " "PEAR SOAP" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Включение SQL валидатора" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5135,12 +5123,12 @@ msgstr "" "При наличии выделенного имени пользователя, пропишите его здесь (изначально " "используется [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Пользователь" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5148,19 +5136,19 @@ msgstr "" "Предлагать имя создаваемой базы данных при наличии такой возможности, или " "оставить поле пустым" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Предлагать имя новой базы данных" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "При определении Suhosin, на главной странице выводится предупреждение" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Предупреждение о Suhosin" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5169,11 +5157,11 @@ msgstr "" "будет приоритетным для текстовых полей SQL запроса (*2) и для окна запроса " "(*1.25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Столбцов в текстовом поле" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5182,31 +5170,31 @@ msgstr "" "будет приоритетным для текстовых полей SQL запроса (*2) и для окна запроса " "(*1.25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Строк в текстовом поле" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Заголовок окна браузера при выборе базы данных" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Заголовок окна браузера по умолчанию" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Заголовок по умолчанию" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Заголовок окна браузера при выборе сервера" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Заголовок окна браузера при выборе таблицы" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5218,29 +5206,29 @@ msgstr "" "Forwarded-For) заголовку пришедшему с прокси 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Список доверенных прокси для IP allow/deny" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" "Каталог на сервере, в который вы можете загружать файлы для последующего " "импорта" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Каталог загрузки" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Разрешить поиск по всей базе данных" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Использовать поиск по базе данных" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5248,11 +5236,11 @@ msgstr "" "При отключении, пользователи не смогут установить никакие из указанных ниже " "параметров, вне зависимости от галочки справа от них" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Включение вкладки разработчика в настройках" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5262,20 +5250,20 @@ msgstr "" "запросах. Для определения количества выражений в сложносоставном запросе " "смотрите libraries/import.lib.php." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Комментировать составные запросы" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Проверить обновление" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Включает возможность проверки последней версии phpMyAdmin на главной странице" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5283,7 +5271,7 @@ msgstr "" msgid "Version check" msgstr "Проверка версии" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5291,7 +5279,7 @@ msgstr "" "Включить [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " "архивирование для операций импорта и экспорта" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5311,47 +5299,47 @@ msgstr "Авторизация с помощью HTTP" msgid "Signon authentication" msgstr "Авторизация с помощью Signon" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV, используя LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Быстро" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Обычно" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Параметры экспорта базы данных" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV для MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "OpenDocument текст" @@ -5530,9 +5518,8 @@ msgstr "Создать таблицу" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Имя" @@ -5874,7 +5861,7 @@ msgid "Hide" msgstr "Скрыть" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Преобразование" @@ -6817,7 +6804,7 @@ msgstr "Несоответствие количества столбцов в CS msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Имя таблицы" @@ -7506,7 +7493,7 @@ msgstr "Параметры" msgid "Direction" msgstr "Направление" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Длина/значения" @@ -7765,7 +7752,7 @@ msgstr "Содержание" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Атрибуты" @@ -8060,7 +8047,7 @@ msgstr "Таблица - пуста!" msgid "Tracking of %s.%s is activated." msgstr "Слежение за %s.%s включено." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8072,7 +8059,7 @@ msgstr "" "одинарной кавычки (\"'\") необходимо экранировать (предварять) символом " "обратной косой черты, например: '\\\\xyz' или 'a\\'b'." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8080,13 +8067,13 @@ msgstr "" "Для значений по умолчанию не добавляйте символы экранирования и кавычек, " "формат значений: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Индекс" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8095,11 +8082,11 @@ msgstr "" "Для просмотра доступных MIME-типов и параметров преобразований " "воспользуйтесь данной ссылкой - %sописание преобразований%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Параметры преобразований" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8111,34 +8098,34 @@ msgstr "" "необходимо экранировать (предварять) символом обратной косой черты, " "например: '\\\\xyz' или 'a\\'b'." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "Много данных ENUM или SET?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Открыть расширенный редактор" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Нет" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Как определено:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Первичный" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Полнотекстовый" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8147,25 +8134,25 @@ msgstr "" "На данный момент описание отсутствует.
Работа используемой функции " "отображения преобразования %s, будет в скором времени описана." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Добавить %s поле(я)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Необходимо добавить хотя бы одно поле." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Тип таблиц" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Определение разделов (PARTITION)" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Добавить значение" @@ -13080,6 +13067,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] либо число определяющее " +#~ "максимальное количество при котором используется вертикальный режим" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Вид отображения столбцов при их редакции/создании" + #~ msgid "Create table on database %s" #~ msgstr "Создать новую таблицу в базе данных %s" diff --git a/po/si.po b/po/si.po index 666ad5fada..bb06b7a9eb 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-21 08:44+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" @@ -65,7 +65,7 @@ msgstr "සෙවීම" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -127,7 +127,7 @@ msgid "Database comment: " msgstr "දත්තගබඩා විස්තර: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "වගු විස්තර" @@ -137,7 +137,7 @@ msgstr "වගු විස්තර" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -153,7 +153,7 @@ msgstr "තීර" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -165,7 +165,7 @@ msgstr "වර්ගය" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -176,7 +176,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "පෙරනිමි" @@ -190,13 +190,13 @@ msgid "Links to" msgstr "Links to" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "විස්තරය" @@ -310,14 +310,14 @@ msgstr "දත්ත පමණයි" msgid "CREATE DATABASE before copying" msgstr "පිටපත් කිරීමට ප්‍රථම දත්තගබඩාවක් සාදන්න" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" @@ -332,8 +332,8 @@ msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙ #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -663,7 +663,7 @@ msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -725,7 +725,7 @@ msgstr "දත්ත කෝෂය" msgid "Tracked tables" msgstr "අවධානය සක්‍රීය වගු" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -801,12 +801,12 @@ msgstr "වගුව අවධානයට ලක් කරන්න" msgid "Database Log" msgstr "දත්තගබඩා ලොගය" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "\"%s\" තීරුව සඳහා අගයන්" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "එක් එක් අගයන් වෙන වෙනම ක්ෂේත්‍ර වලට ඇතුලත් කරන්න." @@ -1129,7 +1129,7 @@ msgstr "වරප්‍රසාද පූරණය කෙරෙමින්" msgid "Removing Selected Users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කෙරෙමින්" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "වසන්න" @@ -1137,7 +1137,7 @@ msgstr "වසන්න" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "සංස්කරණය කරන්න" @@ -1351,7 +1351,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1579,7 +1579,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1630,7 +1630,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1763,7 +1763,7 @@ msgstr "SQL ක්‍රියාත්මක කිරීම" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2292,7 +2292,7 @@ msgstr "No index defined!" msgid "Indexes" msgstr "සූචියන්" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2328,7 +2328,7 @@ msgid "" "removed." msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2636,18 +2636,18 @@ msgid "shared" msgstr "හවුල්" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "වගු" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2723,7 +2723,7 @@ msgstr "අවලංගු සේවාදායක සුචිය: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2795,7 +2795,7 @@ msgstr "MySQL said: " msgid "Failed to connect to SQL validator!" msgstr "SQL වලංගු කරණයට සම්බන්ද වීම අසමත් විය!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL ය පහදන්න" @@ -2807,11 +2807,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "PHP කේත නොමැතිව" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "අලුත් කරන්න" @@ -2820,7 +2820,7 @@ msgstr "අලුත් කරන්න" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Validate SQL" @@ -2936,20 +2936,20 @@ msgid "Click to toggle" msgstr "තේරීමට ක්ලික් කරන්න" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "සැකිල්ල" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3148,7 +3148,7 @@ msgid "Set value: %s" msgstr "%s අගය පිහිටුවන්න" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "පෙරනිමි අගය ප්‍රතිස්ථාපනය කරන්න" @@ -3298,193 +3298,183 @@ msgid "Default display direction" msgstr "පෙරනිමි දර්ශන දිශාව" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "පෙරනිමි දත්තගබඩා ටැබය" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "පෙරනිමි සේවාදායක ටැබය" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "පෙරනිමි වගු ටැබය" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "දත්තගබඩා ලැයිස්තුවක් ලෙස පෙන්වන්න" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "වගු නඩත්තුව" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "මීලඟ පේළිය එක් කරන්න" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "දෝෂ පෙන්වන්න" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "තොරතුරු, අනතුරු ඇඟවීම් හා දෝෂ පිළිබඳ පණිවිඩ සඳහා අයිකන භාවිතා කරන්න" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "icon සහිත දෝෂ" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "ගොනුවක් ලෙස තෝරන්න" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "ගොනුවේ අක්ෂර කට්ටලය" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "ආකෘතිය" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Compression" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "තීර නම් පළමු පේළියේ යොදන්න" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "තීර ඇවුරුම් සළකුණ" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "තීර මගහැරීමේ සළකුණ" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "තීර වෙන් කිරීමේ සළකුණ" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "පේළි අවසන් කිරීමේ සළකුණ" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "එක්සෙල් සංස්කරණය" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "දත්තගබඩා නාම ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "සේවාදායක නාම ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "ගොනු නාම ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3492,375 +3482,375 @@ msgstr "ගොනු නාම ටෙම්ප්ලේටය" msgid "Dump table" msgstr "Dump table" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "වගු ශිර්ෂ පාඨ ඇතුලත් කරන්න" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "වගු සිරස් තලය" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "ලේබල යතුර" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME වර්ගය" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relations" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "අපනයන ක්‍රමය" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "සේවාදායකයේ සුරකින්න" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "ගොනු නාම ටෙම්ප්ලේටය මතක තබා ගන්න" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "වගු සහ තීර නම් පසු-උදෘත මගින් අවුරන්න" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "සෑදීම/යාවත් කාලීන/පරීක්ෂා කිරීමේ දින" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "ප්‍රමාදිත ඇතුල් කිරීම භාවිතා කරන්න" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "අන්‍ය මූල පරීක්ෂා අක්‍රිය කරන්න" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "දත්ත ඇතුළු කිරීමේදී භාවිතා කලයුතු වින්‍යාසය" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "අපනයන වර්ගය" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "වේලාව UTC ලෙස අපනයනය කරන්න" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "phpMyAdmin භාවිතා කිරීමේදී ආරක්‍ෂිත සම්බන්දතාවක් යොදා ගැනීමට බල කරන්න" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "SSL සම්බන්දතාවක් යොදා ගැනීමට බල කරන්න" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "අන්‍ය මූල සීමාව" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "පිරික්සුම් ප්‍රකාරය" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "පිරික්සුම් ප්‍රකාරය රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "පෙරනිමි විකල්ප රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "මෘදුකාංග සංවර්ධනය කරන්නා" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "phpMyAdmin හි මෘදුකාංග සංවර්ධනය කරන්නන් සඳහා සිටුවම්" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "සංස්කරණ ප්‍රකාරය" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "සංස්කරණ ප්‍රකාරය රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "අපනයන පෙරනිමි" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "පෙරනිමි අපනයන විකල්ප රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "විශේෂාංග" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "සාමාන්‍ය" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "නිතර භාවිතා වන විකල්ප සඳහා අගයන් සිටුවන්න" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "ආනයන පෙරනිමි" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "ආනයන / අපනයන" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "ආනයන, අපනයන ඩිරෙක්ටරි සහ හැකිලුම් සඳහා විකල්ප තෝරාගන්න" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "දත්තගබඩා පෙන්වුම් විකල්ප" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "යාත්‍රණ රාමුව" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "යාත්‍රණ රාමුවේ පෙනුම රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "සේවාදායකයන්" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "සේවාදායක පෙන්වුම් විකල්ප" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "ගොනු පෙන්වුම් විකල්ප" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "ප්‍රධාන රාමුව" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "මයික්‍රොසොෆ්ට් ඔෆිස්" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "අනෙකුත් ප්‍රධාන සිටුවම්" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "පිටු නාම" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Query window" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "විමසුම් කවුළුව සඳහා වූ විකල්ප රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "ආරක්ෂාව" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" "phpMyAdmin අතුරුමුහුණතක් පමණක් බව හා MySQL හි විශේෂාංග මෙයට සීමා නොවන බව කරුණාවෙන් සලකන්න" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "මූලික සිටුවම්" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "සත්‍යාපනය" # සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "සත්‍යාපන සිටුවම්" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "සේවාදායකයේ වින්‍යාස" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "සේවාදායකයට සම්බන්ධ වීමේ පරාමිතියන් ඇතුල් කරන්න" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "වින්‍යාස ගබඩාව" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "වෙනස්කම් පිළිබඳ අවධානය" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "අපනයන සිටුවම් රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "ආනයන පෙරනිමි රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "යාත්‍රණ රාමුව රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "ප්‍රධාන රාමුව රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL විමසුම" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL විමසුම් කවුළුව" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "SQL විමසුම් කවුළුවේ ඇති සබැඳුම් රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL විමසුම් සිටුවම්" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL වලංගු කරණය" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3868,46 +3858,46 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "ඇරඹුම්" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "ඇරඹුම් පිටුව රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "ටැබ්" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "ටැබ් ක්‍රියා කල යුතු ආකාරය තෝරන්න" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Use text field" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "අනතුරු හැඟවීම්" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "phpMyAdmin හි සමහර අනතුරු හැඟවීම් අක්‍රීය කරන්න" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3915,25 +3905,25 @@ msgstr "" "ආනයන හා අපනයන සඳහා [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] හැකිළුම සක්‍රීය " "කරන්න" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "iconv සඳහා අමතර පරාමිතියන්" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3942,217 +3932,217 @@ msgstr "" "කාල සීමාව අවසානයට ආසන්න බව දැණුනු විට අනයනනයට බාධා කිරීම සිදුකරන්න. විශාල ගොනු ආනයනයට " "මෙය හොඳ ක්‍රමයක් වන නමුත් මෙමඟින් transactions බිඳීම සිදුවිය හැක." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "අර්ධ ආනයනය: අතුරු බිඳිය හැක" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "ඇතුළු කිරීමේ දෝෂ මත අත් නොහරින්න" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "වගුවේ දත්ත ගොනුවෙන් ප්‍රතිස්ථාපනය කරන්න" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "LOCAL මූල පදය භාවිතා කරන්න" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "පළමු පේලියේ තීරු නම්" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "හිස් පේළි ආනයනය නොකරන්න" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "ව්‍යවහාර මුදල් අගයන් ආනයනය කරන්න (උදා. $5.00, 5.00 ලෙස)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "ප්‍රතිශත පූර්ණ සංඛ්‍යා ලෙස ආනයනය කරන්න (උදා. 12.00%, 12 ලෙස)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "ආරම්භයේ සිට ඇත හැරිය යුතු විමසුම් ගණන" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "අර්ධ ආනයනය: විමසුම් නොසලකා හරිමින්" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "බිංදුව අගයන් සඳහා AUTO_INCREMENT භාවිතා නොකරන්න" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "හැකිලුමේ ආරම්භක ආකාරය" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "වරකට ඇතුල් කල හැකි පේළි ගණන" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "ඇතුල් කල පේළි ගණන" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "ක්ෂණික ප්‍රවේශය අයිකනය සඳහා ඉලක්කය" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "වම්පස රාමුවේ ලාංඡනය පෙන්වන්න" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "ලාංඡනය පෙන්වන්න" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "සේවාදායක තේරීම වම්පස රාමුවේ ඉහල පෙන්වන්න" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "සේවාදායක තේරීම පෙන්වන්න" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "The number of tables that are open." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 #, fuzzy msgid "Database tree separator" msgstr "ෆයිල් නම් ටෙම්ප්ලේටය" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "සැහැල්ලු අනුවාදය භාවිත කරන්න." -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "වගු ලයිස්තුවේ උපරිම ලෙස පෙන්විය යුතු වගු ගණන" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "අවධානය අක්‍රීය වගු" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4160,442 +4150,442 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "ලොගින් කුකියේ වලංගු කාලය (තත්පර වලින්) සඳහන් කරන්න" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "ලොගින් කුකියේ වලංගුතාවය" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "යාත්‍රණ රාමුවේ හා දත්තගබඩා ලයිස්තුවේ උපරිම ලෙස පෙන්විය යුතු දත්තගබඩා ගණන" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "උපරිම දත්තගබඩා" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "වගු ලයිස්තුවේ උපරිම ලෙස පෙන්විය යුතු වගු ගණන" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "උපරිම වගු" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "මතක සීමාව" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "ස්වභාවික අනුපිළිවල" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "විමසුම් කවුළුවේ උස" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "විමසුම් කවුළුවේ පළල (pixel වලින්)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "විමසුම් කවුළුවේ පළල" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "වගුව බවට නම වෙනස් කරන්න" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "ශීර්ෂක පුනරාවර්තනය" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "උදවු බොත්තම පෙන්වන්න" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "සුරැකුම් ඩිරෙක්ටරිය" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "සම්බන්දතා වර්ගය" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "වගු ගණන් කරන්න" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "භාවිතා කල යුතු PHP දිගුව" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Regular expression (PCRE) හා ගැළපෙන දත්තගබඩා සඟවන්න" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "දත්තගබඩා සඟවන්න" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "සර්වරයේ නම" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "වගු ලයිස්තුවේ උපරිම ලෙස පෙන්විය යුතු වගු ගණන" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4604,341 +4594,341 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "සඳහන් දත්තගබඩා පමණක් පෙන්වන්න" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "සර්වරයේ පොර්ට්" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "වගුව විශ්ලේෂණය කරන්න" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "සර්වරයේ සොකට්" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "තීර විස්තර පෙන්වීම" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "ප්‍රකාශය" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "ස්වයංක්‍රියව අනුවාද සාදන්න" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "පෙරනිමි දර්ශන දිශාව" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "විවෘත වගු පෙන්වන්න" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "කොටු සැලැස්ම පෙන්වන්න" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "SQL විමසුම් පෙන්වන්න" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "පේළි සංඛ්‍ය ලේඛන" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4946,28 +4936,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "අගුලු ළෑ දත්තගබඩා මඟහරින්න" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -4977,89 +4967,89 @@ msgstr "" msgid "Password" msgstr "මුරපදය" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "භාවිත නාමය" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "ක්ෂේත්‍ර තීර එක් කරන්න/ඉවත් කරන්න" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy msgid "Default title" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5067,57 +5057,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 #, fuzzy msgid "Upload directory" msgstr "දත්ත මුල් පිටුව" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "phpMyAdmin ප්‍රධාන පිටුවේ නවතම අනුවාදය සඳහා පරීක්ෂාව සක්‍රීය කරන්න " -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5125,13 +5115,13 @@ msgstr "phpMyAdmin ප්‍රධාන පිටුවේ නවතම අන msgid "Version check" msgstr "අනුවාද පරීක්ෂාව" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5151,47 +5141,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS එක්සෙල් සඳහා CSV" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "මෛක්‍රොසොෆ්ට් වර්ඩ් 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document Text" @@ -5368,9 +5358,8 @@ msgstr "වගුව සාදන්න" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "නම" @@ -5727,7 +5716,7 @@ msgid "Hide" msgstr "සඟවන්න" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" @@ -6618,7 +6607,7 @@ msgstr "Invalid field count in CSV input on line %d." msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 #, fuzzy msgid "Table name" @@ -7324,7 +7313,7 @@ msgstr "" msgid "Direction" msgstr "ඍජු සබැඳුම" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "දිග/අගයන්" @@ -7618,7 +7607,7 @@ msgstr "පටුන" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "ගුණාංග" @@ -7923,7 +7912,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "%s.%s සඳහා අවධානය සක්‍රීයයි." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -7941,7 +7930,7 @@ msgstr "" "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -7949,13 +7938,13 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "සූචිය" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -7964,11 +7953,11 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Transformation options" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -7980,36 +7969,36 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "කිසිවක් නැත" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "ප්‍රාථමික" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "සම්පූර්ණ පාඨය" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8018,25 +8007,25 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "%s ක්ෂේත්‍ර(ය) එක් කරන්න" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "ඔබ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් එක් කල යුතුයි." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "ගබඩා යන්ත්‍ර‍" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "+ Add a new value" msgid "+ Add a value" diff --git a/po/sk.po b/po/sk.po index 9a94fd9f45..0ac15d0572 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-07-27 15:32+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" @@ -66,7 +66,7 @@ msgstr "Hľadať" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Komentár k databáze: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Komentár k tabuľke" @@ -140,7 +140,7 @@ msgstr "Komentár k tabuľke" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Stĺpce" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Typ" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Nulový" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Predvolené" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Linkovať na" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Komentáre" @@ -313,14 +313,14 @@ msgstr "Iba dáta" msgid "CREATE DATABASE before copying" msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Pridať %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" @@ -335,8 +335,8 @@ msgstr "Prepnúť na skopírovanú databázu" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Upraviť alebo exportovať relačnú schému" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -670,7 +670,7 @@ msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -732,7 +732,7 @@ msgstr "Dátový slovník" msgid "Tracked tables" msgstr "Sledované tabuľky" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -807,12 +807,12 @@ msgstr "Sledovať tabuľku" msgid "Database Log" msgstr "Databázový log" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Hodnoty pre pole \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Zadajte každú hodnotu do samostatného políčka." @@ -1156,7 +1156,7 @@ msgstr "Načítavam oprávnenia" msgid "Removing Selected Users" msgstr "Odstránenie vybraných používateľov" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Zavrieť" @@ -1164,7 +1164,7 @@ msgstr "Zavrieť" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Upraviť" @@ -1404,7 +1404,7 @@ msgstr "Pridajte prosím aspoň jednu hodnotu do série" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1631,7 +1631,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1682,7 +1682,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1812,7 +1812,7 @@ msgstr "Maximálny čas behu" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2341,7 +2341,7 @@ msgstr "Nebol definovaný žiadny index!" msgid "Indexes" msgstr "Indexy" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2379,7 +2379,7 @@ msgstr "" "Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne " "odstránený." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2690,18 +2690,18 @@ msgid "shared" msgstr "zdieľaný" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabuľky" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2777,7 +2777,7 @@ msgstr "Chybný index servera: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné meno servera %1$s. Prosím, skontrolujte konfiguráciu." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2849,7 +2849,7 @@ msgstr "MySQL hlási: " msgid "Failed to connect to SQL validator!" msgstr "Nepodarilo sa pripojiť k SQL validátoru!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Vysvetliť SQL" @@ -2861,11 +2861,11 @@ msgstr "Preskočiť vysvetlenie SQL" msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Obnoviť" @@ -2874,7 +2874,7 @@ msgstr "Obnoviť" msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Skontrolovať SQL" @@ -2987,20 +2987,20 @@ msgid "Click to toggle" msgstr "Kliknite pre prepnutie" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Štruktúra" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3199,7 +3199,7 @@ msgid "Set value: %s" msgstr "Nastavená hodnota: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Obnoviť východziu hodnotu" @@ -3363,66 +3363,54 @@ msgid "Default display direction" msgstr "Východzí smer zobrazovania" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] alebo číslo, ktoré udáva maximum " -"pre vertikálne zobrazenie" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Smer zobrazenia pre zmenu a vytváranie stĺpcov" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Panel, ktorý je zobrazený pri prístupe k databáze" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Prednastavený panel databázy" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Panel, ktorý je zobrazený pri prístupe na server" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Východzí panel servera" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Panel, ktorý je zobrazený pri prístupe k tabuľke" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Východzí panel tabuľky" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Zobrazenie binárneho obsahu štandardne v HEX formáte" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Zobraziť binárny obsah v HEX formáte" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Zobraziť prehľad databáz ako zoznam namiesto rozbaľovacieho menu" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Zobraziť databázy ako zoznam" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Zobraziť prehľad serverov ako zoznam namiesto rozbaľovacieho menu" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Zobraziť servery ako zoznam" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3430,239 +3418,239 @@ msgstr "" "Vypnúť hromadné operácie pre údržbu tabuliek, ako je optimalizácia alebo " "opravy vybraných tabuliek v databáze." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Vypnúť hromadné operácie s tabuľkami" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Upravovať SQL dopyty vo vyskakovacom okne" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Upraviť v okne" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Zobraziť chyby" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Zbierať chyby" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Zobraziť ikony pre varovné, chybové a informačné správy" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Chyby ikon" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "Nastavte dĺžku behu skriptu v sekundách ([kbd]0[/kbd] bez obmedzení)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Maximálny čas behu" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Uložiť ako súbor" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Znaková sada súboru" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formát" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Kompresia" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Pridať názvy polí na prvý riadok" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Polia uzatvorené do" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Polia uvedené pomocou" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Nahradiť NULL hodnoty pomocou" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Odstrániť konce riadkov (CRLF) z polí" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Riadky ukončené" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Riadky ukončené" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Verzia Excelu" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Vzor pre názov databázy" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Vzor pre názov servera" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Vzor pre názov tabuľky" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Vypísať tabuľku" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Zahrnúť nadpis tabuľky" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Nadpis tabuľky" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Nadpis pokračovania tabuľky" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Návestie" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME typ" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Prepojenia" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Metóda exportu" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Uložiť na server" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Prepísať existujúce súbory" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Zapamätať si vzor pre názov súboru" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Použiť opačný apostrof pri názvoch tabuliek a polí" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "Voľby CREATE TABLE:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Dátum vytvorenia, poslednej zmeny a kontroly" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Použiť oneskorené vloženia" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Vypnúť kontrolu cudzích kľúčov" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Použiť hexadecimálne zobrazenie pre BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Použiť IGNORE" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Akú syntax použiť pre vkladanie dát" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maximálna veľkosť vytvoreného príkazu" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Typ exportu" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Uzatvoriť príkazy v transakcii" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Exportovať čas v UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Vynutiť zabezpečené spojenie pri použití phpMyAdmina" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Vynutit SSL spojenie" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3670,148 +3658,148 @@ msgstr "" "Poradie radenia položiek v rozbaľovacej ponuke cudzích kľúčov; [kbd]obsah[/" "kbd] sú referenčné dáta, [kbd]id[/kbd] je hodnota kľúča" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Poradie cudzích kľúčov v rozbaľovacej ponuke" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Pokiaľ je dostupných menej položiek, bude použitá rozbaľovacia ponuka" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Limit cudzích kľúčov" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Režim prezerania" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Prispôsobiť režim prezerania" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Prispôsobenie východzích nastavení" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV dáta" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Vývojár" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Nastavenia pre vývojára phpMyAdmina" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Režim úprav" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Prispôsobenie režimu úprav" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Východzie nastavenia exportu" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Prispôsobiť východzie nastavenia exportu" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funkcie" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Všeobecné" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Nastaviť zvyčajne používané nastavenia" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Východzie nastavenia importu" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Prispôsobiť východzie nastavenia importu" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Import / export" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Nastaví adresáre pre import a export a voľby kompresie" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Nastavenia zobrazenia databáz" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigačný rám" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Prizpôsobiť vzhľad navigačného rámu" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servery" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Nastavenie zobrazenia serverov" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Nastavenie zobrazenia tabuliek" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Hlavný rám" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Ostatné základné nastavenia" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Nastavenia, ktoré sa nedajú zaradiť inde" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Mená stránok" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3821,22 +3809,22 @@ msgstr "" "html#cfg_TitleTable]documentácii[/a] nájdete špeciálne reťazce, ktoré môžete " "použiť na získanie špeciálnych hodnôt." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "SQL okno" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Prispôsobiť nastavenia okna dopytov" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Zabezpečenie" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3844,23 +3832,23 @@ msgstr "" "Pripomíname, že phpMyAdmin je len užívateľské rozhranie a jeho funkcie " "neobmedzujú MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Základné nastavenia" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Overenie" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Nastavenie overovania" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Konfigurácia servera" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3868,15 +3856,15 @@ msgstr "" "Pokročilá konfigurácia servera, nemeňte tieto nastavenia, pokiaľ neviete " "čoho sa týkajú" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Vložte parametre pripojenia servera" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Miesto uloženia konfigurácie" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3886,11 +3874,11 @@ msgstr "" "prídavným funkciám, viď [a@Documentation.html#linked-tables]miesto uloženia " "konfigurácie [/a] v dokumentácii" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Sledovanie zmien" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3898,44 +3886,44 @@ msgstr "" "Sledovanie zmien vykonaných v databáze. Vyžaduje nastavenie miesta uloženia " "zmien phpMyAdmina." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Prispôsobebie možností exportu" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Prispôsobebie východzích nastavení importu" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Prispôsobenie navigačného rámu" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Prispôsobenie hlavného rámu" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL dopyty" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Pole pre SQL dopyty" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Prispôsobenie odkazov zobrazovaných v poliach pre SQL dopyty" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Nastavenia SQL dopytov" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "Validátor SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3947,43 +3935,43 @@ msgstr "" "[em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright " "2002 Upright Database Technology. All rights reserved.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Úvodná stránka" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Prispôsobenie úvodnej stránky" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Panely" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Zvoľte, ako majú panely fungovať" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Textové polia" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Prispôsobenie vstupných textových polí" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Varovania" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Vypnúť niektoré varovania zobrazované phpMyAdminom" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3991,15 +3979,15 @@ msgstr "" "Povolí [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] kompresiu pre " "importovanie a exportovanie" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Extra parametre pre iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4007,11 +3995,11 @@ msgstr "" "Pokiaľ je povolené, phpMyAdmin bude pokračovať v spracovaní viacprvkových " "dopytov, aj keď jeden z nich zlyhal" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignorovať chyby vo viacprvkových dopytoch" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4021,21 +4009,21 @@ msgstr "" "Týmto spôsobom sa môžu importovať aj veľké súbory, ale môže to zároveň " "spôsobiť problémy s transakciami." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Čiastočný import: povoliť prerušenie" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Neprerušovať pri chybe v príkaze INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Nahradiť dáta v tabuľke súborom" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4043,88 +4031,88 @@ msgstr "" "Východzí format: Berte na vedomie, že tento zoznam závisí na umiestnení " "(databáza, tabuľka) a len SQL je stále dostupné" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Formát importovaného súboru" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Použiť kľúčové slovo LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Mená stĺpcov na prvom riadku" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Neimportovať prázdne riadky" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Import mien (5.00 namiesto $5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importovať percentá ako desatinné čísla (0.12 namiesto 12.00%)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Počet dopytov, ktoré sa majú preskočiť od začiatku" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Čiastočný import: preskočiť dopyty" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Počiatočný stav pre posuvníky" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Koľko riadkov môže byť vložených naraz" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Počet vložených riadkov" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Cieľ pre ikonu rýchleho prístupu" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Zobraziť logo v ľavom ráme" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Zobraziť logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Zobraziť voľbu servera v hornej časti ľavého rámu" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Zobraziť výber serverov" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Minimálny počet tabuliek pre zobrazenie filtra tabuliek" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Reťazec, ktorý rozdeľuje databázy do rôznych úrovní stromu" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Oddeľovač databázového stromu" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4132,39 +4120,39 @@ msgstr "" "Len odľahčená verzia; zobrazí databázy v strome (určené oddeľovačom " "nastaveným nižšie)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Zobraziť databázy v strome" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Zakážte túto voľbu ak chcete vidieť všetky databázy súčasne" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Použiť odľahčenú verziu" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Maximálna hĺbka tabuľkového stromu" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Reťazec, ktorý rozdelí tabuľky do rôznych úrovní stromu" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Oddeľovač tabuľkového stromu" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL, na ktoré bude odkazovať logo v navigačnom ráme" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "URL odkazu loga" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4172,47 +4160,47 @@ msgstr "" "Otvoriť nové okno v hlavnej okne ([kbd]hlavná[/kbd]) alebo v novom ([kbd]nové" "[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Cieľ odkazu loga" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Zvýrazní server pod kurzorom myši" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Povoliť zvýrazňovanie" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" "Maximálny počet tabuliek v zozname nedávno zobrazených tabuliek; nastavte 0 " "pre vypnutie" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Nedávno použité tabuľky" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Požiť graficky menej náročné panely" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Odľahčené panely" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Maximálny počet znakov zobrazovanných v nečíselných poliach pri prechádzaní" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Obmedzenie počtu znakov" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4223,11 +4211,11 @@ msgstr "" "sa môže ľahko stať, že sa zabudnete odhlásiť z ostatných serverov, pokiaľ " "ich používate viac." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Vymazať všetky cookies pri prihlásení" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4235,11 +4223,11 @@ msgstr "" "Určuje, či sa má obnoviť predchádzajúce prihlásenia alebo nie v cookie " "overovacom móde" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Pamätať si užívateľské meno" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4251,52 +4239,52 @@ msgstr "" "sedenia a bude vymazaná pri zatvorení okna. Toto je odporúčané v " "nedôveryhodných prostrediach." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Uloženie prihlasovacej cookie" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Určuje, ako dlho je platná prihlasovacie cookie (v sekundách)" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Platnosť prihlasovacej cookie" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Zdvojnásobiť veľkosť editačného poľa pre stĺpec typu LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Väčšie editačné pole pre LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Zobraziť ikony na hlavnej stránke" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Maximálny počet znakov pri zobrazení SQL dopytu" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Mazimálna dĺžka zobrazeného SQL dopytu" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Uživatelia nemôžu nastaviť vyššiu hodnotu" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "Maximálny počet databáz zobrazených v ľavom ráme a zozname databáz" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Najvyšší počet databáz" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4306,19 +4294,19 @@ msgstr "" "obsahuje viac riadkov, zobrazia sa odkazy "Predchádzajúci" a "" "Ďalší"." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Maximálny počet zobrazených riadkov" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Maximálny počet tabuliek zobrazených v zozname tabuliek" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Maximum tabuliek" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4326,11 +4314,11 @@ msgstr "" "Vypnúť štandardné varovanie o chýbajúcom rozšírení mcrypt pri cookie " "overovaní" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "Varovanie o mcrypte" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4338,45 +4326,45 @@ msgstr "" "Počet bytov, ktoré môže alokovať skript, napr. [kbd]32M[/kbd] ([kbd]0[/kbd] " "ruší obmedzenia)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Obmedzenie pamäte" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links" msgstr "Toto sú odkazy na Upraviť, Upraviť tu, Kopírovať a Odstrániť" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Kde zobraziť linky riadkov tabuľky" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Použiť prirodzené triedenie pre mena tabuliek a databáz" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Prirodzené poradie" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Použiť len ikony, len text alebo obidve" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Navigašná lišta s ikonami" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Použiť medzipamäť pre GZip výstup pre zvýšenie rýchlosti HTTP prenosu" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Medzipamäť pre GZip výstup" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4384,19 +4372,19 @@ msgstr "" "[kbd]SMART[/kbd] - t.j. zostupné radenie pre polia typu TIME, DATE, DATETIME " "a TIMESTAMP, ostatné budú radené vzostupne" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Východzie radenie" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Použiť trvalé (persistent) spojenia k MySQL databázam" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Trvalé spojenia" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4406,23 +4394,23 @@ msgstr "" "niektorá z vyžadovaných tabuliek pre miesto uloženia phpMyAdmin konfigurácie " "nebola nájdená" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Chýbajú tabuľky pre miesto uloženia phpMyAdmin konfigurácie" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Zobrazenie ikon pre operácie s tabuľkami" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Zakázať úpravu polí typu BLOB a BINARY" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Chrániť binárne polia" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4433,119 +4421,119 @@ msgstr "" "zobrazeniu histórie dopytoj Java Scriptové funkcie (bude stratená pri " "zavretí okna)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Trvalá história dopytov" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Koľko dopytov sa má držať v histórii" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Dĺžka histórie dopytov" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Zobrazený panel pri otvorení nového okna dopytov" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Východzí panel okna dopytov" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Výška okna dopytov (v pixeloch)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Výška okna dopytov" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Šírka okna dopytov (v pixeloch)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Šírka okna dopytov" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Zvoľte, ktorá funkcia bude použitá pre konverziu znakových sád" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Prekódovací nástroj" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "Pri prechádzaní tabuliek sa pre každú uloží nastavenie triedenia" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Pamätať si triedenie tabuľky" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Opkovať hlavičku každých X buniek, [kbd]0[/kbd] vypne túto možnosť" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Opakovať záhlavie" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Zobraziť tlačidlo nápovedy namiesto textu dokumentácie" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Zobraziť tlačidlo nápovedy" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Adresár na serveri pre ukladanie exportov" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Adresár pre ukladanie" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Nechajte prázdne pokiaľ nepoužívate" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Poradie overovania hostiteľa" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Nechajte prázdne, ak chcete použiť východzie nastavenia" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Pravidlá overovania hostiteľa" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Povoliť prihlásenie bez hesla" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Povoliť prihlásenia užívateľa root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "Názov pre zobrazenie pri použití HTTP autorizácie" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4555,19 +4543,19 @@ msgstr "" "overovanie[/a] (Neuložená vo vašom koreňovom adresári dokumentov, doporučené " "umiestneie: -etc-swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "Konfiguračný súbor SweKey" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Výber overovacej metódy" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Typ overovania" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4575,11 +4563,11 @@ msgstr "" "Nechajte prázdne pre žiadnu podporu [a@http://wiki.phpmyadmin.net/pma/" "bookmark]záložiek[/a], navrhované: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Tabuľka záložiek" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4587,31 +4575,31 @@ msgstr "" "Nechajte prázdne pre žiadne komentáre ci mime typy polí, navrhované: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Tabuľka informácii o poliach" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Komprimácia spojenia k MySQL serveru" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Komprimovať pripojenie" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Ako sa pripájať k serveru, nechajte [kbd]tcp[/kbd] ak si nie ste istý" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Typ pripojenia" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Heslo kontrolného užívateľa" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4619,19 +4607,19 @@ msgstr "" "Špeciálny MySQL užívateľ s obmedzenými právami, viac informácii je " "dostupných na [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Kontrolný užívateľ" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Spočítavať tabuľky pri zobrazovaní zoznamu databáz" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Počítať tabuľky" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4639,11 +4627,11 @@ msgstr "" "Nechajte prázdne pre vypnutie návrhára, východzie nastavenie: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Tabuľka návrhára" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4651,27 +4639,27 @@ msgstr "" "Viac informácii na [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] a [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Zakazať použitie INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Ktoré rozšírenie PHP sa má použiť; použite mysqli ak je to možné" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Použiť rozšírenie PHP" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Skryť databázy odpovedajúce regulárnemu výrazu (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Skryť databázy" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4679,43 +4667,43 @@ msgstr "" "Nechať prázdne pre vypnutie histórie SQL dopytov, navrhované: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Tabuľka histórie SQL dopytov" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Meno počítača, kde beží MySQL server" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Meno servera" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "URL pri odhlásení" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Maximálny počet tabuliek zobrazených v zozname tabuliek" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Pokusiť sa pripojiť bez hesla" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Pripojiť sa bez hesla" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4729,30 +4717,30 @@ msgstr "" "ovplyvniť triedenie databáz v zozname. Stačí na konci zoznamu uviesť [kbd]*[/" "kbd] na konci pre zobrazenie ostatných v abecednom poradí." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Zobraziť len vybrané databázy" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Nechajte prázdne, pokiaľ nepoužívate prihlasovací config" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Heslo pre prihlasovací config" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Nechajte prázdne pre vypnutie podpory pre PDF schémy, navrhované: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF schéma: tabuľka stránok" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4762,20 +4750,20 @@ msgstr "" "viď [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Ak ponecháte prázdne, " "bude táto možnosť vypnutá. Doporučená hodnota: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Meno databázy" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Port, na ktorom počúva MySQL server, nechajte prázdne pre východziu hodnotu" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Port servera" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4787,11 +4775,11 @@ msgstr "" "Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v " "databáze. Odporúčaná hodnota: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Naposledy použitá tabuľka" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4799,19 +4787,19 @@ msgstr "" "Nechajte prázdne pre vypnutie [a@http://wiki.phpmyadmin.net/pma/relation]" "relation-links[/a] podpory, navrhované: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Relačná tabuľka" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "SQL príkaz pre načítanie dostupných databáz" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES príkaz" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4819,43 +4807,43 @@ msgstr "" "Priklad, viď [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typy " "overovania[/a]" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Meno prihlasovacej session/sedenia" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "URL pri prihlásení" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Socket na ktorom počúva MySQL server, nechajte prázdne pre východziu hodnotu" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Socket servera" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Povoliť SSL pre pripojenie k MySQL serveru" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Použiť SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Nechajte prázdne pro vypnutie podpory pre PDF schému, navrhované: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF schéma: tabuľka súradníc" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4863,11 +4851,11 @@ msgstr "" "Tabuľka obsahujúca popisy polí. Nechajte prázdnu pre vypnutie tejto funkcie. " "Odporúčaná hodnota: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Zobrazenie stĺpcov tabuľky" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4875,11 +4863,11 @@ msgstr "" "Nechajte prázdne pre vypnutie podpory \"trvalého\" ukladania nastavení, " "navrhované: [kbd]pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Tabuľka pre nastavenie rozhrania" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4887,11 +4875,11 @@ msgstr "" "Či chcete pridať príkaz DROP DATABASE IF EXISTS do logu ako prvý riadok pri " "vytváraní databázy." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Pridať DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4899,11 +4887,11 @@ msgstr "" "Či chcete pridať príkaz DROP TABLE IF EXISTS do logu ako prvý riadok pri " "vytváraní tabuľky." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Pridať DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4911,21 +4899,21 @@ msgstr "" "Či chcete pridať príkaz DROP VIEW IF EXISTS do logu ako prvý riadok pri " "vytváraní pohľadu." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Pridať DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Určuje zoznam príkazov, ktoré sa automaticky použijú pri vytváraní nových " "verzií." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Sledované príkazy" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4933,22 +4921,22 @@ msgstr "" "Nechajte prázdne pre vypnutie podpory pre sledovanie SQL dopytov, " "navrhované: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Tabuľka pre sledovanie SQL dopytov" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" "Či má sledovací mechanizmus automaticky vytvárať verzie tabuliek a pohľadov." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Automaticky vytvárať verzie" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4960,15 +4948,15 @@ msgstr "" "Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v " "databáze. Odporúčaná hodnota: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Tabuľka pre užívateľské nastavenia" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4976,11 +4964,11 @@ msgstr "" "Vypnite, pokiaľ viete, že vaše pma_* tabuľky sú aktuálne. Tým zabránite " "kontrolám kompatibility a urýchlite zabrazovanie stránok" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Podrobná kontrola" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4988,21 +4976,21 @@ msgstr "" "Užívateľsky prívetivý popis tohto servera. Ak necháte prízdne, zobrazí sa " "namiesto popisu meno servera." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Dlhé meno tohto servera" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Či sa bude užívateľovi zobrazovať tlačidlo "zobraziť všetky (riadky)" """ -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Povoliť zobraziť všetky riadky" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5013,26 +5001,26 @@ msgstr "" "konfiguračnom súbore; toto nemá vplyv na možnosť vykonať rovnaký príkaz " "priamo" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Zobraziť formulár na zmenu hesla" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Zobraziť formulár na vytvorenie databázy" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" "Určuje, či sa má zobraziť voľba smeru vypisovania pri prechádzaní tabuľky" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Zobraziť smer zobrazovania" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -5040,31 +5028,31 @@ msgstr "" "Definuje, či sa majú alebo nemajú zobrazovať typové polia v móde úprav/" "vkladania" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Zobraziť typy polí" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Zobraziť zoznam funkcií v móde úprav" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Zobraziť zoznam funkcií" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 #, fuzzy #| msgid "Where to show the table row links" msgid "Whether to show hint or not" msgstr "Kde zobraziť linky riadkov tabuľky" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show indexes" msgid "Show hint" msgstr "Zobraziť indexy" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5072,42 +5060,42 @@ msgstr "" "Zobraziť odkaz na výstup [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a] funkcie" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Zobraziť odkaz na phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Zobraziť podrobné informácie o MySQL serveri" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Určuje, či sa budú zobrazovať SQL dopyty generované phpMyAdminom" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Zobraziť SQL dopyty" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Povoliť zobrazenie štatistík o databázach a tabuľkách (napr. využité miesto)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Zobraziť štatistiky" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Zobraziť komentár k databáze namiesto mena" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5115,30 +5103,30 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Zobraziť komentár k tabuľke namiesto mena" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Zobraziť komentáre tabuľky vo vyskakovacom okne nápovedy" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Označiť použité tabuľky a umožniť zobrazovanie databáz s uzamknutými " "tabuľkami" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Preskočiť zamknuté tabuľky" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Vyžaduje povolené kontrolovanie SQL" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5148,7 +5136,7 @@ msgstr "Vyžaduje povolené kontrolovanie SQL" msgid "Password" msgstr "Heslo" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5156,11 +5144,11 @@ msgstr "" "[strong]Varovanie:[/strong] vyžaduje nainštalované rozšírenia PHP SOAP alebo " "PEAR SOAP" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Povoliť kontrolovanie SQL" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5168,12 +5156,12 @@ msgstr "" "Pokiaľ máte vlastné užívateľské meno, zadajte ho tu (východzie [kbd]anonymous" "[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Užívateľ" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5181,21 +5169,21 @@ msgstr "" "Navrhnúť mano novej databázy vo formulári pre vytváranie databázy (pokiaľ je " "to možné) alebo nechať prázdne pole" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Navrhnúť meno novej databázy" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Na hlavnej stránke je zobrazené varovanie pokiaľ je detekované rozšírenie " "Suhosin" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Varovanie Suhosin rozšírenia" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5203,11 +5191,11 @@ msgstr "" "Veľkosť editačného okna (počet stĺpcov). Táto hodnota bude zväčšená pre okná " "SQL dopytov (*2) a pre dopytové okno (*1,25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Stĺpce s textovou oblasťou" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5215,31 +5203,31 @@ msgstr "" "Veľkosť editačného okna (počet riadkov). Táto hodnota bude zväčšená pre okná " "SQL dopytov (*2) a pre dopytové okno (*1,25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Riadkov v textovej oblasti" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Popis okna prehliadača pri výbere databázy" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Popis okna prehliadača keď nie je nič vybrané" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Východzí popis" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Popis okna prehliadača keď je vybraný server" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Popis okna prehliadača keď je vybraná tabuľka" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5247,27 +5235,27 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Zoznam dôveryhodných proxy pre povolenie/zakázanie IP adresy" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Adresár na serveri, kde môžete nahrať súbor pre import" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Adresár pre nahrávanie" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Povoliť prehľadávať celú databázu" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Použiť databázové vyhľadávanie" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5275,30 +5263,30 @@ msgstr "" "Pokiaľ je vypnuté, užívatelia nemôžu zmeniť žiadne z nižšie uvedených " "nastavení, bez ohľadu na zaškrtávacie pole vpravo" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Povoliť záložku Pre vývojára v nastaveniach" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Podrobné viacprvkové dopyty" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Skontrolovať najnovšiu verziu" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Povoliť kontrolu poslednej verzie na hlavnej stránke phpMyAdmina" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5306,7 +5294,7 @@ msgstr "Povoliť kontrolu poslednej verzie na hlavnej stránke phpMyAdmina" msgid "Version check" msgstr "Kontrola verzie" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5314,7 +5302,7 @@ msgstr "" "Povoliť [a@http://en.wikipedia.org/wiki/ZIP_(súborový_formát)]ZIP[/a] " "kompresiu pre import a export operácie" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5335,47 +5323,47 @@ msgstr "HTTP overovanie" msgid "Signon authentication" msgstr "Signon authentication" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV pomocou LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Tabuľkový procesor Open Document" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Vlastné" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Nastavenia exportu databáz" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV pre MS Excel dáta" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document Text" @@ -5551,9 +5539,8 @@ msgstr "Vytvoriť tabuľku" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Názov" @@ -5898,7 +5885,7 @@ msgid "Hide" msgstr "Skryť" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformácia pri prehliadaní" @@ -6776,7 +6763,7 @@ msgstr "Chybný počet položiek v CSV vstupe na riadku %d." msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Názov tabuľky" @@ -7484,7 +7471,7 @@ msgstr "" msgid "Direction" msgstr "Priame odkazy" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Dĺžka/Nastaviť*" @@ -7776,7 +7763,7 @@ msgstr "Obsah" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atribúty" @@ -8072,7 +8059,7 @@ msgstr "Tabuľka vyzerá prázdna!" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8084,7 +8071,7 @@ msgstr "" "apostrof (\"'\") pri týchto hodnotách, zadajte ich pomocou uvádzacieho " "spätného lomítka (napr. '\\\\xyz' alebo 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8092,13 +8079,13 @@ msgstr "" "Pre predvolené hodnoty, prosím zadajte iba jednu hodnotu bez úvodzoviek " "alebo uvádzacích znakov, napr.: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Index" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8107,11 +8094,11 @@ msgstr "" "Pre zoznam dostupných parametrov a ich MIME typov kliknite na %spopisy " "transformácií%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Parametre transformácie" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8123,34 +8110,34 @@ msgstr "" "jednoduché úvodzovky (\"'\") medzi týmito hodnotami, vložte pred nich spätné " "lomítko (napr. '\\\\xyz' alebo 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Získať viac miesta pre úpravy" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Žiadny" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Podľa zadania:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primárny" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Celý text" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8159,25 +8146,25 @@ msgstr "" "Pre túto transformáciu nie je dostupný žiadny popis.
Opýtajte sa autora " "čo %s robí." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Pridať %s stĺpcov" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Musíte pridať aspoň jeden stĺpec." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Úložný Systém" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Pridať nového používateľa" @@ -12982,6 +12969,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] alebo číslo, ktoré udáva " +#~ "maximum pre vertikálne zobrazenie" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Smer zobrazenia pre zmenu a vytváranie stĺpcov" + #~ msgid "Create table on database %s" #~ msgstr "Vytvoriť novú tabuľku v databáze %s" diff --git a/po/sl.po b/po/sl.po index 4755384b32..0235b98d63 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-10-01 19:12+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" @@ -66,7 +66,7 @@ msgstr "Iskanje" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Pripomba zbirke podatkov: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Pripomba tabele" @@ -140,7 +140,7 @@ msgstr "Pripomba tabele" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Stolpec" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Vrsta" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Privzeto" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Povezave z" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Pripombe" @@ -313,14 +313,14 @@ msgstr "Samo podatki" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pred kopiranjem" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" @@ -335,8 +335,8 @@ msgstr "Preklopi na kopirano zbirko podatkov" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Uredi ali izvozi relacijsko shemo" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -671,7 +671,7 @@ msgid "Check tables having overhead" msgstr "Preveri prekoračene" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -733,7 +733,7 @@ msgstr "Slovar podatkov" msgid "Tracked tables" msgstr "Sledene tabele" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -808,12 +808,12 @@ msgstr "Sledi tabeli" msgid "Database Log" msgstr "Dnevnik zbirke podatkov" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Vrednosti za stolpec \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Vnesite vsako vrednost v svoje polje." @@ -1143,7 +1143,7 @@ msgstr "Ponovno nalaganje privilegijev" msgid "Removing Selected Users" msgstr "Odstranjevanje izbranih uporabnikov" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Zapri" @@ -1151,7 +1151,7 @@ msgstr "Zapri" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Uredi" @@ -1367,7 +1367,7 @@ msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1594,7 +1594,7 @@ msgstr "" "Gradnja grafikona z uvoženo konfiguracijo je spodletela. Ponastavljanje na " "privzeto konfiguracijo ..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1637,7 +1637,7 @@ msgstr "Uporabljena spremenljivka/formula" msgid "Test" msgstr "Preizkus" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1764,7 +1764,7 @@ msgstr "Čas izvajanja poizvedbe" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2285,7 +2285,7 @@ msgstr "Ni definiranega indeksa!" msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2323,7 +2323,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2636,18 +2636,18 @@ msgid "shared" msgstr "deljeno" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabele" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2725,7 +2725,7 @@ msgstr "" "Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo " "konfiguracijo." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2797,7 +2797,7 @@ msgstr "MySQL je vrnil: " msgid "Failed to connect to SQL validator!" msgstr "Ne morem se povezati s preverjalnikom SQL!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Razloži stavek SQL" @@ -2809,11 +2809,11 @@ msgstr "Preskoči razlago stavka SQL" msgid "Without PHP Code" msgstr "Brez kode PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Ustvari kodo PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Osveži" @@ -2822,7 +2822,7 @@ msgstr "Osveži" msgid "Skip Validate SQL" msgstr "Preskoči preverjanje pravilnosti SQL stavka" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Preveri pravilnost stavka SQL" @@ -2926,20 +2926,20 @@ msgid "Click to toggle" msgstr "Kliknite za preklop" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3139,7 +3139,7 @@ msgid "Set value: %s" msgstr "Določi vrednost: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Povrni privzeto vrednost" @@ -3304,66 +3304,54 @@ msgid "Default display direction" msgstr "Privzeta smer prikaza" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]vodoravno[/kbd], [kbd]navpično[/kbd] ali število, ki določa največje " -"število za katero bo uporabljena navpična postavitev" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Smer prikaza za spreminjanje/ustvarjanje stolpcev" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Zavihek, ki se prikaže ob odprtju zbirke podatkov" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Privzet zavihek zbirke podatkov" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Zavihek, ki se prikaže ob odprtju strežnika" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Privzet zavihek strežnika" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Zavihek, ki se prikaže ob odprtju tabele" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Privzet zavihek tabele" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Privzeto prikaži dvojiške vsebine kot HEX" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Prikaži dvojiške vsebine kot HEX" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Prikaži naštete zbirke podatkov kot seznam namesto spustnega menija" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Prikaži zbirke podatkov kot seznam" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Prikaži naštete strežnike kot seznam namesto spustnega menija" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Prikaži strežnike kot seznam" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3371,241 +3359,241 @@ msgstr "" "Onemogoči množične operacije vzdrževanja tabel, kot je optimiranje ali " "popravljanje izbranih tabel zbirke podatkov." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Onemogoči množično vzdrževanje tabel" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Uredi poizvedbe SQL v pojavnem oknu" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Uredi v oknu" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Prikaži napake" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Zberi napake" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" "Prikaži ikone za opozorilna sporočila, sporočila o napakah in informacijah" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Napake z ikonami" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" "Nastavi število sekund, ko se skript lahko izvaja ([kbd]0[/kbd] za neomejeno)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Najdaljši čas izvajanja" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Shrani kot datoteko" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Nabor znakov datoteke" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Oblika" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Stiskanje" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Postavi imena stolpcev v prvo vrstico" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Stolpci obdani z" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Stolpci izognjeni z" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Zamenjaj NULL z" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Odstrani znake CRLF znotraj stolpcev" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Stolpci zaključeni z" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Vrstice zaključene z" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Izdaja za Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Predloga imena zbirke podatkov" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Predloga imena strežnika" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Predloga imena tabele" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Odloži tabelo" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Vključi ime tabele" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Ime tabele" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Nadaljevanje imena tabele" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Označi ključ" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Vrsta MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Način izvoza" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Shrani na strežnik" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Prepiši obstoječo(e) datoteko(e)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Zapomni si predlogo imena datoteke" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Obdaj imena tabel in stolpcev z enojnimi poševnimi narekovaji" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Združljivostni način SQL" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "Možnosti CREATE TABLE:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Datumi za ustvarjeno/posodobljeno/preverjeno" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Uporabi zakasnjeno vstavljanje" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Onemogoči preverjanja tujih ključev" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Uporabi šestnajstiško za BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Uporabi možnost prezri vstavke" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Skladnja ob vstavljanju podatkov" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Največja dolžina ustvarjene poizvedbe" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Vrsta izvoza" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Vključi izvoz v transakcijo" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Izvozi čas v UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Vsili varno povezavo med uporabo phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Vsili povezavo SSL" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3613,148 +3601,148 @@ msgstr "" "Vrstni red za predmete na spustnem seznamu tujih ključev; [kbd]content[/kbd] " "je sklicevan podatek, [kbd]id[/kbd] je vrednost ključa" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Vrstni red spustnega seznama tujih ključev" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Uporabljen bo spustni seznam, če je prisotnih manj elementov" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Omejitev tujih ključev" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Način brskanja" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Prilagodite način brskanja" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Prilagodite privzete možnosti" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV-podatki" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Razvijalec" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Nastavitve za razvijalce phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Način urejanja" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Prilagodite način urejanja" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Privzete možnosti izvoza" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Prilagodite privzete možnosti izvoza" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Lastnosti" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Splošno" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Nastavi nekatere pogosto uporabljane možnosti" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Privzete možnosti uvoza" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Prilagodite pogoste privzete možnosti uvoza" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Uvoz / izvoz" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Nastavi mape za uvoz in izvoz ter možnosti stiskanja" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Možnosti prikaza zbirk podatkov" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigacijski okvir" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Prilagodite prikaz navigacijskega okvirja" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Strežniki" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Možnosti prikaza strežnikov" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Možnosti prikaza tabel" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Glavni okvir" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Document" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Druge nastavitve" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Nastavitve, ki se ne uvrščajo nikamor drugam" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Naslovi strani" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3764,22 +3752,22 @@ msgstr "" "html#cfg_TitleTable]dokumentacijo[/a] za čarobne nize, ki jih lahko " "uporabite za pridobitev posebnih vrednosti." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Okno za poizvedbe" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Prilagodite možnosti okna poizvedb" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Varnost" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3787,23 +3775,23 @@ msgstr "" "Pomnite, da je phpMyAdmin samo uporabniški vmesnik in njegove lastnosti ne " "omejujejo MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Osnovne nastavitve" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Overovitev" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Nastavitve overovitve" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Konfiguracija strežnika" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3811,15 +3799,15 @@ msgstr "" "Napredne nastavitve strežnika; ne spreminjajte teh možnosti, če ne veste " "čemu služijo" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Vnesite parametre povezave s strežnikom" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Hramba konfiguracije" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3829,11 +3817,11 @@ msgstr "" "funkcij, glej [a@Documentation.html#linked-tables]hrambo konfiguracije " "phpMyAdmin[/a] v dokumentaciji" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Sledenje spremembam" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3841,44 +3829,44 @@ msgstr "" "Sledenje spremembam narejenih v zbirki podatkov. Potrebuje hrambo " "konfiguracije phpMyAdmin." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Prilagodi možnosti izvoza" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Prilagodi privzete možnosti uvoza" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Prilagodi navigacijski okvir" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Prilagodi glavni okvir" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "Poizvedbe SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "Polje poizvedbe SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Prilagodi povezave prikazane v poljih poizvedbe SQL" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Nastavitve poizvedb SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "Preverjalnik SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3890,43 +3878,43 @@ msgstr "" "[a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 " "Upright Database Technology. Vse pravice pridržane.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Zagon" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Prilagodi začetno stran" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Zavihki" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Določite, kako želite, da zavihki delujejo" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Besedilna polja" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Prilagodi polja za vnos besedila" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Besedilo Texy!" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Opozorila" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Onemogoči nekatera opozorila, ki jih prikazuje phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3934,15 +3922,15 @@ msgstr "" "Omogoči stiskanje [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] za posege " "uvoza in izvoza" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Dodatni parametri za iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3950,11 +3938,11 @@ msgstr "" "Če je omogočeno, phpMyAdmin nadaljuje z izvajanjem poizvedb z več izjavami, " "četudi ena od poizvedb spodleti" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Prezri napake več stavkov" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3964,21 +3952,21 @@ msgstr "" "omejitve. To je morda dober način za uvoz velikih datotek, čeprav lahko " "prekine transakcije." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Delni uvoz: dovoli prekinitev" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Ne prekini ob napaki INSERT" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Podatke v tabeli zamenjaj z datoteko" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3986,89 +3974,89 @@ msgstr "" "Privzeta oblika; pomnite, da je seznam odvisen od položaja (podatkovna " "zbirka, tabela) in vedno je na voljo samo SQL" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Oblika uvožene datoteke" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Uporabi ključno besedo LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Imena stolpcev v prvi vrstici" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Ne uvozi praznih vrstic" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Uvozi denarne enote ($5.00 v 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Uvozi odstotke kot ustrezne decimalne vrednosti (12.00% v ,12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Število poizvedb, ki jih naj preskočim od začetka" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Delni uvoz: preskoči poizvedbe" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne uporabi AUTO_INCREMENT za ničelne vrednosti" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Začetno stanje drsnikov" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Koliko vrstic je lahko vstavljenih naenkrat" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Število vstavljenih vrstic" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Cilj ikone za hitri dostop" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Prikaži logotip v levem okvirju" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Prikaži logotip" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Prikaži izbrani strežnik na vrhu levega okvirja" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Prikaži izbiro strežnikov" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" "Najmanjše število tabel, potrebnih za prikaz polja za filtriranje tabel" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Niz, ki loči zbirke podatkov v drugi nivo drevesa" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Ločilo drevesa zbirke podatkov" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4076,39 +4064,39 @@ msgstr "" "Samo lahka različica; prikaže zbirke podatkov v drevesu (določeno z ločilom, " "navedenim spodaj)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Prikaži zbirke podatkov v drevesu" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Onemogočite to, če želite videti vse zbirke podatkov naenkrat" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Uporabi lahko različico" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Največja globina drevesa tabel" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Niz, ki loči tabele v različne stopnje drevesa" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Ločilo drevesa tabel" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL kamor bo kazal logotip v navigacijskem okvirju" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "URL-povezava logotipa" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4116,47 +4104,47 @@ msgstr "" "Odpre povezano stran v glavnem ([kbd]main[/kbd]) ali v novem oknu ([kbd]new[/" "kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Cilj povezave logotipa" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Poudari strežnik pod miškinim kazalcem" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Omogoči poudarjanje" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" "Največje število nedavno uporabljenih tabel; določite 0 za onemogočitev" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Nedavno uporabljene tabele" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Uporabi grafično manj zahtevne zavihke" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Lahki zavihki" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Največje število znakov prikazanih v katerem koli neštevilčnem stolpcu v " "načinu brskanja" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Omejitev znakov stolpca" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4167,11 +4155,11 @@ msgstr "" "hitro povzroči pozabljanje odjavljanja iz ostalih strežnikov, ko ste " "povezani na več strežnikov." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Izbriši vse piškotke ob odjavi" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4179,11 +4167,11 @@ msgstr "" "Določi, ali se naj prejšnji prijavni podatki v načinu overovitve piškotkov " "prikličejo ali ne" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Prikliči uporabniško ime" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4195,54 +4183,54 @@ msgstr "" "sejo in bo izbrisan takoj, ko zaprete okno brskalnika. To je priporočeno za " "okolja, ki jim ne zaupate." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Shranjevanje prijavnih piškotkov" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Določa, kako dolgo (v sekundah) je prijavni piškotek veljaven" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Veljavnost prijavnega piškotka" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Dvojna velikost besedilnega polja za stolpce LONGTEXT" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Večje besedilno polje za LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Uporabi ikone na glavni strani" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Največje število znakov pri prikazu poizvedbe SQL" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Največja dolžina prikazanega SQL" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Uporabniki ne morejo določiti višje vrednosti" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Največje število podatkovnih zbirk prikazanih v levem okvirju in na seznamu " "zbirk podatkov" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Največ podatkovnih zbirk" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4252,19 +4240,19 @@ msgstr "" "rezultatov vsebuje več vrstic, se prikažeta povezavi »Prejšnja« " "in »Naslednja«." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Največje število vrstic za prikaz" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Največje število tabel prikazanih na seznamu tabel" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Največ tabel" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4272,11 +4260,11 @@ msgstr "" "Onemogoči privzeto opozorilo, ki se prikaže, če mcrypt manjka za overitev " "piškotkov" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "Opozorilo mcrypt" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4284,43 +4272,43 @@ msgstr "" "Število bajtov, ki jih skript lahko dodeli, npr. [kbd]32M[/kbd] ([kbd]0[/" "kbd] za neomejeno)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Omejitev spomina" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "To so povezave Uredi, Kopiraj in Izbriši" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Kje naj prikažem povezave vrstic tabel" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Uporabi naravni vrstni red za razvrščanje tabel in imen zbirk podatkov" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Naravni vrstni red" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Uporabi samo ikone, samo besedilo ali oboje" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Ikonska navigacijska vrstica" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Uporabi izhod medpomnjenja GZip za povečano hitrost v prenosih HTTP" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Izhod medpomnjenja GZip" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4328,19 +4316,19 @@ msgstr "" "[kbd]SMART[/kbd] – tj. padajoči vrstni red za stolpce vrste TIME, DATE, " "DATETIME in TIMESTAMP, v naprotnem primeru naraščajoči vrstni red" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Privzet vrstni red" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Uporabi vztrajne povezave s podatkovnimi zbirkami MySQL" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Vztrajne povezave" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4350,23 +4338,23 @@ msgstr "" "podatkov Struktura, če katera od tabel, potrebnih za hrambo konfiguracije " "phpMyAdmin, ni bila najdena" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Manjkajoče tabele hrambe konfiguracije phpMyAdmin" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Ikonski posegi tabel" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Prepreči urejanje stolpcev BLOB in BINARY" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Zaščiti dvojiške stolpce" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4376,119 +4364,119 @@ msgstr "" "(potrebuje hrambo konfiguracije phpMyAdmin). Če je onemogočeno, se za prikaz " "zgodovine poizvedb uporabi rutina JavaScript (ki se izgubi ob zaprtju okna)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Trajna zgodovina poizvedb" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Koliko poizvedb je hranjenih v zgodovini" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Dolžina zgodovine poizvedb" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Zavihek, ki se prikaže ob odprtju novega okna za poizvedbe" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Privzet zavihek okna za poizvedbe" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Višina okna poizvedb (v slikovnih pikah)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Višina okna poizvedb" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Širina okna poizvedb (v slikovnih pikah)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Širina okna poizvedb" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Določi katere funkcije bodo uporabljene za pretvorbo nabora znakov" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Pogon rekodiranja" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "Med brskanjem po tabelah se razvrščanje vsake tabele ohrani" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Ohrani razvrščanje tabel" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Ponovi glave vsakih X celic, [kbd]0[/kbd] dezaktivira to funkcijo" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Ponovi glave" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Prikaži gumb za pomoč namesto besedila dokumentacije" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Prikaži gumb za pomoč" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "Shrani vse urejene celice naenkrat" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Mapa, kamor se lahko na strežnik shranijo izvozi" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Mapa za shranjevanje" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Pustite prazno, če se ne uporablja" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Zaporedje overovitve gostitelja" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Pustite prazno za privzeto" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Pravila overovitve gostitelja" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Dovoli prijave brez gesla" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Dovoli prijavo root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "Ime področja HTTP Basic Auth, ki se prikaže med HTTP Auth" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "Področje HTTP" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4498,19 +4486,19 @@ msgstr "" "SweKey[/a] (se ne nahaja v korenski mapi dokumentov; predlagano: /etc/swekey." "conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "Konfiguracijska datoteka SweKey" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Način overovitve za uporabo" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Vrsta overovitve" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4518,11 +4506,11 @@ msgstr "" "Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/" "bookmark]zaznamkov[/a]; predlagano: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Tabela zaznamkov" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4530,32 +4518,32 @@ msgstr "" "Pustite prazno, če ne želite pripomb/vrst mime stolpcev; predlagano: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Tabela informacij stolpcev" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Stisni povezavo s strežnikom MySQL" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Stisni povezavo" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Način povezave s strežnikom; pustite [kbd]tcp[/kbd], če niste prepričani" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Vrsta povezave" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Geslo krmilnega uporabnika" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4563,19 +4551,19 @@ msgstr "" "Posebni uporabnik MySQL, konfiguriran z omejenimi dovoljenji; več informacij " "je na voljo na [a@http://wiki.phpmyadmin.net/pma/controluser]wikiji[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Krmilni uporabnik" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Preštej tabele med prikazovanjem seznama podatkovnih zbirk" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Preštej tabele" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4583,11 +4571,11 @@ msgstr "" "Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Tabela Oblikovalnika" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4595,27 +4583,27 @@ msgstr "" "Več informacij na [a@http://sf.net/support/tracker.php?aid=1849494]" "sledilniku hroščev PMA[/a] in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Onemogoči uporabo INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Katera razširitev PHP naj se uporablja; uporabite mysqli, če je podprt" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Razširitev PHP za uporabo" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Skrije zbirke podatkov, ki se ujemajo z običajnim izrazom (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Skrij zbirke podatkov" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4623,23 +4611,23 @@ msgstr "" "Pustite prazno, če ne želite podpore zgodovine poizvedb SQL; predlagano: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Tabela zgodovine poizvedb SQL" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Ime gostitelja, kjer teče strežnik MySQL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Ime gostitelja strežnika" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Odjavni URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" @@ -4647,19 +4635,19 @@ msgstr "" "Ta konfiguracija zagotavlja, da v \"table_uiprefs\" hranimo samo N (N = " "MaxTableUiprefs) najnovejših zapisov in da samodejno brišemo starejše zapise" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Največje število zapisov, shranjenih v tabeli \"table_uiprefs\"" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Poskusi se povezati brez gesla" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Poveži se brez gesla" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4673,30 +4661,30 @@ msgstr "" "v vrstnem redu in na koncu uporabite [kbd]*[/kbd] za prikaz preostalih v " "abecednem vrstnem redu." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Prikaži samo navedene zbirke podatkov" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Pustite prazno, če ne uporabljate overovitve config" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Geslo za overovitev config" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF-shema: tabele strani" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4706,20 +4694,20 @@ msgstr "" "si [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] za vse informacije. " "Pustite prazno, če ne želite podpore. Predlagano: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Ime zbirke podatkov" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Vrata, na katera naj bo strežnik MySQL priključen; pustite prazno za privzeto" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Vrata strežnika" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4727,11 +4715,11 @@ msgstr "" "Pustite prazno, če ne želite \"vztrajno\" nedavno uporabljenih tabel skozi " "seje; predlagano: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Nedavno uporabljena tabela" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4739,19 +4727,19 @@ msgstr "" "Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/" "relation]relacijskih povezav[/a]; priporočeno: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Relacijska tabela" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "Ukaz SQL za pridobitev razpoložljivih zbirk podatkov" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "Ukaz SHOW DATABASES" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4759,43 +4747,43 @@ msgstr "" "Oglejte si [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]vrste " "overovitev[/a] za primer" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Ime seje signon" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "URL signon" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Vtičnica na katero je povezan strežnik MySQL; pustite prazno za privzeto" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Vtičnica strežnika" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Omogoči SSL za povezavo s strežnikom MySQL" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Uporabi SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF-shema: koordinate tabel" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4803,11 +4791,11 @@ msgstr "" "Tabela za opisovanje prikaznih stolpcev; pustite prazno, če ne želite " "podpore; predlagano: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Tabela prikaznih stolpcev" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4815,11 +4803,11 @@ msgstr "" "Pustite prazno, če ne želite \"vztrajnih\" nastavitev uporabniškega vmesnika " "tabel skozi seje; predlagano: [kbd]pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Tabela nastavitev uporabniškega vmesnika" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4827,11 +4815,11 @@ msgstr "" "Ali naj se stavek DROP DATABASE IF EXISTS doda kot prva vrstica v dnevnik " "pri ustvarjanju zbirke podatkov." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Dodaj DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4839,11 +4827,11 @@ msgstr "" "Ali naj se stavek DROP TABLE IF EXISTS doda kot prva vrstica v dnevnik pri " "ustvarjanju tabele." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Dodaj DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4851,21 +4839,21 @@ msgstr "" "Ali naj se stavek DROP VIEW IF EXISTS doda kot prva vrstica v dnevnik pri " "ustvarjanju pogleda." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Dodaj DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Določi seznam stavkov, ki jih samodejno ustvarjanje uporabi za nove " "različice." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Izjave za sledenje" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4873,22 +4861,22 @@ msgstr "" "Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: [kbd]" "pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "Tabela sledenja poizvedb SQL" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" "Ali naj mehanizem sledenja ustvari različice tabel in pogledov samodejno." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Samodejno ustvari različice" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" @@ -4896,15 +4884,15 @@ msgstr "" "Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki " "podatkov; predlagano: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Tabela za hranjenje uporabnikovih nastavitev" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Uporabnik za overovitev config" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4912,11 +4900,11 @@ msgstr "" "Onemogočite, če veste, da so vaše tabele pma_* ažurirane. To prepreči " "preverjanja združljivosti in tako poveča zmogljivost" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Preverjanje razširitve" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4924,19 +4912,19 @@ msgstr "" "Uporabniku prijazen opis tega strežnika. Pustite prazno, če se naj namesto " "tega prikaže ime gostitelja." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Razširjeno ime tega strežnika" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Ali se naj uporabniku prikaže gumb "prikaži vse (vrstice)"" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Dovoli prikaz vseh vrstic" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4946,15 +4934,15 @@ msgstr "" "kbd], saj je geslo vgrajeno v konfiguracijsko datoteko; to ne omejuje " "možnosti izvedbe enakega ukaza neposredno" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Pokaži obrazec za spremembo gesla" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Pokaži obrazec za ustvarjanje zbirke podatkov" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" @@ -4962,37 +4950,37 @@ msgstr "" "Določa ali naj bo med brskanjem po tabelah prikazana možnost vrste smeri " "prikaza" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Prikaži smer prikaza" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "Določa ali naj bodo v načinu urejanja/vstavljanja prikazane vrste polj" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Pokaži vrste polj" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Prikaže polja funkcij v načinu urejanja/vstavljanja" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Prikaži polja funkcij" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "Naj prikažem namig ali ne" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "Prikaži namig" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5000,32 +4988,32 @@ msgstr "" "Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Prikaži povezavo phpinfo()" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Prikaži podrobne informacije o strežniku MySQL" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Določi, ali se naj poizvedbe SQL, ki jih ustvari phpMyAdmin, prikažejo" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Pokaži poizvedbe SQL" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Dovoli prikaz statistike zbirke podatkov in tabele (npr. poraba prostora)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Pokaži statistiko" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5033,11 +5021,11 @@ msgstr "" "Če so zaslonski namigi omogočeni in ima zbirka podatkov določeno pripombo, " "bo to zamenjalo pripombo in pravo ime" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Prikaži pripombo zbirke podatkov namesto njenega imena" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5049,30 +5037,30 @@ msgstr "" "['LeftFrameTableSeparator'], zato je samo mapa imenovana kot pridevek, sama " "imena tabel pa ostanejo nespremenjena" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Prikaži pripombo tabele namesto njenega imena" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Prikaži pripombe tabel v zaslonskih namigih" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Označi uporabljene tabele in omogoči prikaz zbirk podatkov z zaklenjenimi " "tabelami" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Preskoči zaklenjene tabele" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Potrebuje omogočen Preverjalnik SQL" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5082,7 +5070,7 @@ msgstr "Potrebuje omogočen Preverjalnik SQL" msgid "Password" msgstr "Geslo" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5090,11 +5078,11 @@ msgstr "" "[strong]Opozorilo:[/strong] potrebuje nameščeno razširitev PHP SOAP ali PEAR " "SOAP" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Omogoči Preverjalnik SQL" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5102,12 +5090,12 @@ msgstr "" "Če imate uporabniško ime po meri, ga določite tukaj (privzeto [kbd]anonymous" "[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Uporabniško ime" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5115,19 +5103,19 @@ msgstr "" "Predlagaj ime zbirke podatkov v obrazcu "Ustvari zbirko podatkov" " "(če je le mogoče) ali pusti besedilno polje prazno" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Predlagaj novo ime zbirke podatkov" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Na glavni strani se prikaže opozorilo, če je zaznan Suhosin" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Opozorilo Suhosin" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5135,11 +5123,11 @@ msgstr "" "Velikost besedilnega polja (stolpci) v načinu urejanja; vrednost bo povečana " "za polja poizvedb SQL (*2) in za okno poizvedbe (*1,25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Stolpcev besedilnega polja" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5147,31 +5135,31 @@ msgstr "" "Velikost besedilnega polja (vrstice) v načinu urejanja; vrednost bo povečana " "za polja poizvedb SQL (*2) in za okno poizvedbe (*1,25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Vrstic besedilnega polja" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Naslov okna brskalnika, ko je izbrana zbirka podatkov" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Naslov okna brskalnika, ko je ni izbrano nič" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Privzeti naslov" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Naslov okna brskalnika, ko je izbran strežnik" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Naslov okna brskalnika, ko je izbrana tabela" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5182,27 +5170,27 @@ msgstr "" "navaja, da naj phpMyAdmin zaupa glavi HTTP_X_FORWARDED_FOR (X-Forwarded-For) " "prihajajoči iz proxyja 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Seznam zaupanja vrednih proxyjev za sprejetje/zavrnitev IP" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Mapa na strežniku, kamor lahko naložite datoteke za uvoz" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Mapa za nalaganje" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Dovoli iskanje po celotni zbirki podatkov" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Uporabi iskanje po zbirki podatkov" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5210,11 +5198,11 @@ msgstr "" "Ko je onemogočeno, uporabniki ne morejo nastaviti katere koli od spodnjih " "možnosti, ne glede na potrditveno polje na desni" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Omogoči zavihek Razvijalec v nastavitvah" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5224,19 +5212,19 @@ msgstr "" "si libraries/import.lib.php za privzete podatke o tem, koliko poizvedb lahko " "stavek vsebuje." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Zgosti večkratne stavke" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Preveri za najnovejšo različico" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Omogoča preverjanje najnovejše različice na glavni strani phpMyAdmin" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5244,7 +5232,7 @@ msgstr "Omogoča preverjanje najnovejše različice na glavni strani phpMyAdmin" msgid "Version check" msgstr "Preverjanje različice" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5252,7 +5240,7 @@ msgstr "" "Omogoči stiskanje [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " "za posege uvoza in izvoza" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5272,47 +5260,47 @@ msgstr "Overitev preko HTTP" msgid "Signon authentication" msgstr "Overitev preko signon" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV z uporabo LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Preglednica Open Document" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Hitro" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Po meri" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Možnosti za izvoz zbirke podatkov" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV-podatki za MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Besedilo Open Document" @@ -5485,9 +5473,8 @@ msgstr "Ustvari tabelo" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Ime" @@ -5830,7 +5817,7 @@ msgid "Hide" msgstr "Skrij" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Pretvorba z brskalnikom" @@ -6770,7 +6757,7 @@ msgstr "Neveljavno število stolpcev v vnosu CSV v vrstici %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Ime tabele" @@ -7457,7 +7444,7 @@ msgstr "Parametri" msgid "Direction" msgstr "Smer" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Dolžina/Vrednosti" @@ -7717,7 +7704,7 @@ msgstr "Vsebina" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributi" @@ -8012,7 +7999,7 @@ msgstr "Tabela je prazna!" msgid "Tracking of %s.%s is activated." msgstr "Sledenje %s.%s je aktivirano." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8024,7 +8011,7 @@ msgstr "" "ali enojni narekovaj (\"'\"), pred tem znakom vnesite poševnico (npr. '\\" "\\xyz' ali 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8032,13 +8019,13 @@ msgstr "" "Za privzete vrednosti vnesite samo vrednosti, brez poševnice nazaj ali " "narekovaja, npr.: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8047,11 +8034,11 @@ msgstr "" "Za seznam razpoložljivih možnosti pretvorbe in vrst MIME kliknite na %sopise " "transformacij%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Možnosti pretvorbe" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8063,34 +8050,34 @@ msgstr "" "enojni narekovaj (\"'\"), morate pred ta znak postaviti (še eno) poševnico " "nazaj (npr. '\\\\xyz' ali 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "Podatki ENUM ali SET predolgi?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Pridobi več prostora za urejanje" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Brez" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Kot določeno:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primarni" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Polno besedilo" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8099,25 +8086,25 @@ msgstr "" "Za to pretvorbo ni na voljo opisa.
Za funkcije %s se pozanimajte pri " "avtorju." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Dodaj %s stolpec(-cev)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Dodati morate vsaj en stolpec." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Pogon skladiščenja" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Definicija PARTITION" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Dodaj vrednost" @@ -13082,6 +13069,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavljeno na 0" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]vodoravno[/kbd], [kbd]navpično[/kbd] ali število, ki določa največje " +#~ "število za katero bo uporabljena navpična postavitev" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Smer prikaza za spreminjanje/ustvarjanje stolpcev" + #~ msgid "Create table on database %s" #~ msgstr "Ustvari novo tabelo v podatkovni zbirki %s" diff --git a/po/sq.po b/po/sq.po index 81c7c237ce..34735f9b9b 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" @@ -66,7 +66,7 @@ msgstr "Kërko" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -128,7 +128,7 @@ msgid "Database comment: " msgstr "Komenti për databazën: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Komentet e tabelës" @@ -138,7 +138,7 @@ msgstr "Komentet e tabelës" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Emrat e kollonave" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Lloji" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Prezgjedhur" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Lidhje me" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Komente" @@ -316,14 +316,14 @@ msgstr "Vetëm të dhënat" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE para se të kopjohet" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Shto %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerë AUTO_INCREMENT" @@ -338,8 +338,8 @@ msgstr "Kalo tek databaza e kopjuar" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -365,7 +365,7 @@ msgid "Edit or export relational schema" msgstr "Skema relacionale" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -691,7 +691,7 @@ msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -758,7 +758,7 @@ msgstr "Data Dictionary" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -838,12 +838,12 @@ msgstr "Kontrollo tabelën" msgid "Database Log" msgstr "Databazat" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1181,7 +1181,7 @@ msgstr "Duke ringarkuar të drejtat" msgid "Removing Selected Users" msgstr "Heq përdoruesit e zgjedhur" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1189,7 +1189,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Ndrysho" @@ -1423,7 +1423,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1648,7 +1648,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1698,7 +1698,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1855,7 +1855,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2427,7 +2427,7 @@ msgstr "Asnjë tregues i përcaktuar!" msgid "Indexes" msgstr "Tregues" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2464,7 +2464,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2770,18 +2770,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabela" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2858,7 +2858,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2930,7 +2930,7 @@ msgstr "Mesazh nga MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Shpjego SQL" @@ -2942,11 +2942,11 @@ msgstr "Mos shpjego SQL" msgid "Without PHP Code" msgstr "pa kod PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Krijo kodin PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Rifresko" @@ -2955,7 +2955,7 @@ msgstr "Rifresko" msgid "Skip Validate SQL" msgstr "Mos vleftëso SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Vleftëso SQL" @@ -3067,20 +3067,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3293,7 +3293,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3444,135 +3444,125 @@ msgid "Default display direction" msgstr "Opcione të eksportimit të databazës" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Ndysho emrin e databazës në" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Administrimi i tabelës" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Shfaq karakteristikat" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Ruaje me emër..." -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Familja gërmave të file:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Formati" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Kompresim" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3581,71 +3571,71 @@ msgstr "Kompresim" msgid "Put columns names in the first row" msgstr "Vendos emrat e kollonave tek rreshti i parë" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Fushë e përbërë nga" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Fushë e kufizuar nga" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Zëvendëso NULL me" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Rreshta që mbarojnë me" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Rreshta që mbarojnë me" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Edicion i Excel" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Emri i file template" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Emri i file template" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Emri i file template" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3653,397 +3643,397 @@ msgstr "Emri i file template" msgid "Dump table" msgstr "%s tabela(at)" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Përfshi nëntitullin e tabelës" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Titulli i Tabelës caption" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Nëntitulli i tabelës vazhduese" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Kyçi i etiketës" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "Lloji MIME" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relacione" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Lloji i Eksportit" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Mbishkruaj file(s) ekzistues" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Emri i file template" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Përdor backquotes me emrat e tabelave dhe fushave" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Datat e Krijimit/Përditësimit/Kontrollit" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Përdor shtimet me vonesë" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Ç'aktivo kontrollin e kyçeve të jashtëm" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Përdor shpërfill shtimet" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Lloji i Eksportit" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Përfshi eksportin në një transacion" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Lloji i Eksportit" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "të dhëna CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "General" msgstr "Gjeneruar nga" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Importo files" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "Serveri" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Dokumentet" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Numri i faqes:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Dritarja e Query" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentet" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "query SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "query SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "query SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "Kronollogjia e SQL" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4051,288 +4041,288 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Gjendja" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Tabela" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Përdor fushë teksti" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Zëvendëso të dhënat e tabelës me file" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Vendos emrat e kollonave tek rreshti i parë" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Shto vlerë AUTO_INCREMENT" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Analizo tabelën" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4340,452 +4330,452 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Limitet e rezervave" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Transformo tabelën e renditur sipas" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Dritarja e Query" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Dritarja e Query" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Dritarja e Query" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Riemërto tabelën në" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Lidhje" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Asnjë tabelë" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Defragmento tabelën" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Asnjë databazë" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "Zgjedhja e serverit" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4794,345 +4784,345 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Databazat" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "Zgjedhja e serverit" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizo tabelën" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Riparo tabelën" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Zgjedhja e serverit" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Vizualizimi i komenteve të kollonave" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmento tabelën" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Instruksione" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "Automatically create versions" msgstr "Versioni i MySQL" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "Shfaq tabelat" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Shfaq rrjetën" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Shfaq të gjitha kërkesat" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Statistikat e rreshtave" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5140,28 +5130,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5171,91 +5161,91 @@ msgstr "" msgid "Password" msgstr "Fjalëkalimi" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Emri i përdoruesit:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Shto/Fshi kollonat e fushës" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Prezgjedhur" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5263,56 +5253,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5320,13 +5310,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5346,47 +5336,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV për të dhëna MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5558,9 +5548,8 @@ msgstr "Krijo një faqe të re" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Emri" @@ -5939,7 +5928,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Transformimi i Shfletuesit" @@ -6828,7 +6817,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7528,7 +7517,7 @@ msgstr "" msgid "Direction" msgstr "Krijimi" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Gjatësia/Set*" @@ -7814,7 +7803,7 @@ msgstr "Tabela e përmbajtjes" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Pronësi" @@ -8130,7 +8119,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8148,7 +8137,7 @@ msgstr "" "backslashes (\"\\\") apo single quote (\"'\") para këtyre vlerave, backslash-" "ojini (për shembull '\\\\xyz' o 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8156,13 +8145,13 @@ msgstr "" "Për vlerat e prezgjedhura, ju lutem shtoni një vlerë të vetme, pa backslash " "escaping apo thonjëza, duke përdorur këtë format: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Treguesi" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8171,11 +8160,11 @@ msgstr "" "Për listën e opcioneve të transformimeve në dispozicion dhe transformimet " "relativë të llojeve-MIME, kliko tek %spërshkrimet e transformimeve%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opcione të transformimeve" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8187,36 +8176,36 @@ msgstr "" "(\"\\\") apo një apostrofë (\"'\") midis këtyre vlerave, duhet ti backslash-" "oni (për shembull '\\\\xyz' ose 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Asnjë lloj" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primar" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Teksti komplet" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8225,27 +8214,27 @@ msgstr "" "Asnjë përshkrim në dispozicion për këtë transformim.
Ju lutem pyet " "autorin, çfarë %s bën." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Shto një fushë të re" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Zgjidh të paktën një kollonë për të shfaqur" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Shto një përdorues të ri" diff --git a/po/sr.po b/po/sr.po index 5b37d8313c..b304c4daa4 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" @@ -67,7 +67,7 @@ msgstr "Претраживање" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -129,7 +129,7 @@ msgid "Database comment: " msgstr "Коментар базе:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Коментари табеле" @@ -139,7 +139,7 @@ msgstr "Коментари табеле" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -155,7 +155,7 @@ msgstr "Колона" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -167,7 +167,7 @@ msgstr "Тип" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -178,7 +178,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Подразумевано" @@ -192,13 +192,13 @@ msgid "Links to" msgstr "Везе ка" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Коментари" @@ -312,14 +312,14 @@ msgstr "Само подаци" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пре копирања" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Додај %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" @@ -334,8 +334,8 @@ msgstr "Пребаци се на копирану базу" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -359,7 +359,7 @@ msgid "Edit or export relational schema" msgstr "Уреди или извези релациону схему" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -687,7 +687,7 @@ msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -755,7 +755,7 @@ msgstr "Речник података" msgid "Tracked tables" msgstr "Провери табелу" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -837,12 +837,12 @@ msgstr "Провери табелу" msgid "Database Log" msgstr "База података" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1195,7 +1195,7 @@ msgstr "Поново учитај привилегије" msgid "Removing Selected Users" msgstr "Уклони изабране кориснике" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1203,7 +1203,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Промени" @@ -1448,7 +1448,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1672,7 +1672,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1721,7 +1721,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1879,7 +1879,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2458,7 +2458,7 @@ msgstr "Кључ није дефинисан!" msgid "Indexes" msgstr "Кључеви" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2495,7 +2495,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2808,18 +2808,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Табеле" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2900,7 +2900,7 @@ msgstr "Неисправан индекс сервера: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2972,7 +2972,7 @@ msgstr "MySQL рече: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Објасни SQL" @@ -2984,11 +2984,11 @@ msgstr "Прескочи објашњавање SQL-a" msgid "Without PHP Code" msgstr "без PHP кода" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Освежи" @@ -2997,7 +2997,7 @@ msgstr "Освежи" msgid "Skip Validate SQL" msgstr "Прескочи проверу SQL-a" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Провери SQL" @@ -3113,20 +3113,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3338,7 +3338,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3488,139 +3488,129 @@ msgid "Default display direction" msgstr "Опције за извоз базе" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Преименуј базу у" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Преименуј базу у" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Преименуј базу у" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Радње на табели" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Уреди следећи ред" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Прикажи особине" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Сачувај као датотеку" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Карактер сет датотеке:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Компресија" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3629,71 +3619,71 @@ msgstr "Компресија" msgid "Put columns names in the first row" msgstr "Стави имена поља у први ред" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Поља ограничена са" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Ескејп карактер      " -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Замени NULL са" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Линије се завршавају са" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Линије се завршавају са" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel издање" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3701,406 +3691,406 @@ msgstr "Шаблон имена датотеке" msgid "Dump table" msgstr "%s табела" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Укључи коментар табеле" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Коментар табеле" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Настављен коментар табеле" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Ознака кључа" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-типови" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Релације" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Тип извоза" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Препиши постојеће датотеке" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Користи ' за ограничавање имена поља" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Мод SQL компатибилности" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Датуми креирања/ажурирања/провере" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Користи одложена уметања" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Искључи провере страних кључева" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Користи хексадецимално за BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Игнориши дупликате при уметању" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Максимална дужина направљеног упита" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Тип извоза" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Обави извоз у трансакцији" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Тип извоза" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "Export defaults" msgstr "Увоз датотека" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 #, fuzzy msgid "Customize default export options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Направи" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Увоз датотека" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Сервери" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 #, fuzzy msgid "Servers display options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 #, fuzzy msgid "Tables display options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 #, fuzzy #| msgid "Microsoft Excel 2000" msgid "Microsoft Office" msgstr "Microsoft Excel 2000" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Број стране:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 #, fuzzy msgid "Customize query window options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Документација" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy msgid "Authentication settings" msgstr "Репликација" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 #, fuzzy msgid "Customize import defaults" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL упит" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL упит" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL упит" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL историјат" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4108,72 +4098,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Статус" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Табела" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Користи текст поље" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -4184,222 +4174,222 @@ msgstr "" "ограничења. Ово може бити добар начин увоза великих датотека, али са друге " "стране може покварити трансакције." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Замени податке у табели са подацима из датотеке" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Формат датотека за увоз" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Користи кључну реч LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Стави имена поља у први ред" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Број записа (упита) које треба прескочити:" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Додај AUTO_INCREMENT вредност" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 #, fuzzy msgid "Number of inserted rows" msgstr "Број сортираних редова." -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "Број отворених табела." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 #, fuzzy msgid "Database tree separator" msgstr "Шаблон имена датотеке" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 #, fuzzy msgid "Use light version" msgstr "Верзија MySQL клијента" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Recently used tables" msgstr "Провери табелу" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4407,457 +4397,457 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Maximum databases" msgstr "База не постоји" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Ограничења ресурса" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Промени редослед у табели" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Промени име табеле у " -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Нити поправке" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "Основни директоријум података" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Конекције" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Нема табела" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Дефрагментирај табелу" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 #, fuzzy msgid "PHP extension to use" msgstr "верзија PHP-a" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "База не постоји" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "назив сервера" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4866,347 +4856,347 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "назив базе" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "ИД сервера" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Анализирај табелу" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Поправи табелу" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Избор сервера" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Приказујем коментаре колоне" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Дефрагментирај табелу" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Име" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Режим аутоматског опоравка" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Прикажи отворене табеле" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Прикажи мрежу" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Прикажи комплетне упите" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Статистике реда" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5214,29 +5204,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 #, fuzzy msgid "Skip locked tables" msgstr "Прикажи отворене табеле" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5246,90 +5236,90 @@ msgstr "" msgid "Password" msgstr "Лозинка" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Додај/обриши колону" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy msgid "Default title" msgstr "Преименуј базу у" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5337,57 +5327,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 #, fuzzy msgid "Upload directory" msgstr "Основни директоријум података" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5395,13 +5385,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5421,47 +5411,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV користећи LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Опције за извоз базе" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document Text" @@ -5639,9 +5629,8 @@ msgstr "Направи табелу" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Име" @@ -6043,7 +6032,7 @@ msgid "Hide" msgstr "Сакриј" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Транформације читача" @@ -6954,7 +6943,7 @@ msgstr "Неисправан број поља у CSV улазу на линиј msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Назив табеле" @@ -7659,7 +7648,7 @@ msgstr "" msgid "Direction" msgstr "Директне везе" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Дужина/Вредност*" @@ -7959,7 +7948,7 @@ msgstr "Садржај" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Атрибути" @@ -8271,7 +8260,7 @@ msgstr "Табела је изгледа празна!" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8289,7 +8278,7 @@ msgstr "" "користите их у \"избегнутом\" (escaped) облику (на пример '\\\\xyz' или 'a" "\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8297,13 +8286,13 @@ msgstr "" "За подразумевану вредност, унесите само једну вредност, без косих црта или " "наводника у овом облику: а" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Кључ" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8312,11 +8301,11 @@ msgstr "" "За листу доступних опција трансформације и њихове трансформације MIME-" "типова, кликните на %sописе трансформација%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Опције трансформације" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8328,36 +8317,36 @@ msgstr "" "апостроф (\"'\") у те вредности, ставите обрнуту косу црту испред њих (на " "пример '\\\\xyz' или 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "нема" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Примарни" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Текст кључ" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8365,28 +8354,28 @@ msgid "" msgstr "" "Нема описа за ову трансформацију.
Молимо питајте аутора шта %s ради." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додај %s поља" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Морате додати барем једно поље." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Погон складиштења" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Додај новог корисника" diff --git a/po/sr@latin.po b/po/sr@latin.po index 3f092bbd1e..6a9a44e4a6 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" @@ -67,7 +67,7 @@ msgstr "Pretraživanje" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -131,7 +131,7 @@ msgid "Database comment: " msgstr "Komentar baze:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Komentari tabele" @@ -141,7 +141,7 @@ msgstr "Komentari tabele" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -157,7 +157,7 @@ msgstr "Kolona" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -169,7 +169,7 @@ msgstr "Tip" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -180,7 +180,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Podrazumevano" @@ -194,13 +194,13 @@ msgid "Links to" msgstr "Veze ka" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Komentari" @@ -314,14 +314,14 @@ msgstr "Samo podaci" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pre kopiranja" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" @@ -336,8 +336,8 @@ msgstr "Prebaci se na kopiranu bazu" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -361,7 +361,7 @@ msgid "Edit or export relational schema" msgstr "Uredi ili izvezi relacionu shemu" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -681,7 +681,7 @@ msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -749,7 +749,7 @@ msgstr "Rečnik podataka" msgid "Tracked tables" msgstr "Proveri tabelu" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -831,12 +831,12 @@ msgstr "Proveri tabelu" msgid "Database Log" msgstr "Baza podataka" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1189,7 +1189,7 @@ msgstr "Ponovo učitavam privilegije" msgid "Removing Selected Users" msgstr "Ukloni izabrane korisnike" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1197,7 +1197,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Promeni" @@ -1442,7 +1442,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1666,7 +1666,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1715,7 +1715,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1873,7 +1873,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2452,7 +2452,7 @@ msgstr "Ključ nije definisan!" msgid "Indexes" msgstr "Ključevi" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2489,7 +2489,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2802,18 +2802,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabele" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2894,7 +2894,7 @@ msgstr "Neispravan indeks servera: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2966,7 +2966,7 @@ msgstr "MySQL reče: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Objasni SQL" @@ -2978,11 +2978,11 @@ msgstr "Preskoči objašnjavanje SQL-a" msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Osveži" @@ -2991,7 +2991,7 @@ msgstr "Osveži" msgid "Skip Validate SQL" msgstr "Preskoči proveru SQL-a" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Proveri SQL" @@ -3107,20 +3107,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3332,7 +3332,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3483,139 +3483,129 @@ msgid "Default display direction" msgstr "Opcije za izvoz baze" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Preimenuj bazu u" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Preimenuj bazu u" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Preimenuj bazu u" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Radnje na tabeli" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Uredi sledeći red" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Prikaži osobine" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Sačuvaj kao datoteku" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Karakter set datoteke:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Kompresija" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3624,71 +3614,71 @@ msgstr "Kompresija" msgid "Put columns names in the first row" msgstr "Stavi imena polja u prvi red" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Polja ograničena sa" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Escape karakter      " -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Zameni NULL sa" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Linije se završavaju sa" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Linije se završavaju sa" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel izdanje" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3696,404 +3686,404 @@ msgstr "Šablon imena datoteke" msgid "Dump table" msgstr "%s tabela" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Uključi komentar tabele" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Komentar tabele" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Nastavljen komentar tabele" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Oznaka ključa" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-tipovi" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relacije" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Tip izvoza" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Koristi ' za ograničavanje imena polja" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "Mod SQL kompatibilnosti" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Datumi kreiranja/ažuriranja/provere" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Koristi odložena umetanja" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Isključi provere stranih ključeva" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Koristi heksadecimalno za BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Ignoriši duplikate pri umetanju" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maksimalna dužina napravljenog upita" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Tip izvoza" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Obavi izvoz u transakciji" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Tip izvoza" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "Export defaults" msgstr "Uvoz datoteka" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 #, fuzzy msgid "Customize default export options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Napravi" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Uvoz datoteka" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Serveri" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 #, fuzzy msgid "Servers display options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 #, fuzzy msgid "Tables display options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "Open Document Text" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Broj strane:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 #, fuzzy msgid "Customize query window options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Dokumentacija" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy msgid "Authentication settings" msgstr "Replikacija" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 #, fuzzy msgid "Customize import defaults" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL upit" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL upit" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL upit" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL istorijat" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4101,72 +4091,72 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Status" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Tabela" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Koristi tekst polje" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 #, fuzzy msgid "" "Allow interrupt of import in case script detects it is close to time limit. " @@ -4177,222 +4167,222 @@ msgstr "" "ograničenja. Ovo može biti dobar način uvoza velikih datoteka, ali sa druge " "strane može pokvariti transakcije." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Zameni podatke u tabeli sa podacima iz datoteke" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Format datoteka za uvoz" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Koristi ključnu reč LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Stavi imena polja u prvi red" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Broj zapisa (upita) koje treba preskočiti:" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 #, fuzzy msgid "Number of inserted rows" msgstr "Broj sortiranih redova." -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "Broj otvorenih tabela." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 #, fuzzy msgid "Database tree separator" msgstr "Šablon imena datoteke" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 #, fuzzy msgid "Use light version" msgstr "Verzija MySQL klijenta" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Recently used tables" msgstr "Proveri tabelu" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4400,457 +4390,457 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Maximum databases" msgstr "Baza ne postoji" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Ograničenja resursa" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Promeni redosled u tabeli" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Promeni ime tabele u " -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Niti popravke" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "Osnovni direktorijum podataka" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Konekcije" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Nema tabela" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Defragmentiraj tabelu" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 #, fuzzy msgid "PHP extension to use" msgstr "verzija PHP-a" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Baza ne postoji" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "naziv servera" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4859,347 +4849,347 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "naziv baze" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "ID servera" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analiziraj tabelu" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Popravi tabelu" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Prikazujem komentare kolone" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentiraj tabelu" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Ime" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Režim automatskog oporavka" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Prikaži otvorene tabele" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Prikaži mrežu" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Prikaži kompletne upite" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Statistike reda" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5207,29 +5197,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 #, fuzzy msgid "Skip locked tables" msgstr "Prikaži otvorene tabele" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5239,90 +5229,90 @@ msgstr "" msgid "Password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/obriši kolonu" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy msgid "Default title" msgstr "Preimenuj bazu u" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5330,57 +5320,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 #, fuzzy msgid "Upload directory" msgstr "Osnovni direktorijum podataka" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5388,13 +5378,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5414,47 +5404,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV koristeći LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Opcije za izvoz baze" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Open Document Text" @@ -5632,9 +5622,8 @@ msgstr "Napravi tabelu" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Ime" @@ -6037,7 +6026,7 @@ msgid "Hide" msgstr "Sakrij" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Tranformacije čitača" @@ -6944,7 +6933,7 @@ msgstr "Neispravan broj polja u CSV ulazu na liniji %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Naziv tabele" @@ -7649,7 +7638,7 @@ msgstr "" msgid "Direction" msgstr "Direktne veze" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Dužina/Vrednost*" @@ -7947,7 +7936,7 @@ msgstr "Sadržaj" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributi" @@ -8259,7 +8248,7 @@ msgstr "Tabela je izgleda prazna!" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8277,7 +8266,7 @@ msgstr "" "(\"'\") koristite ih u \"izbegnutom\" (escaped) obliku (na primer '\\\\xyz' " "ili 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8285,13 +8274,13 @@ msgstr "" "Za podrazumevanu vrednost, unesite samo jednu vrednost, bez kosih crta ili " "navodnika u ovom obliku: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Ključ" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8300,11 +8289,11 @@ msgstr "" "Za listu dostupnih opcija transformacije i njihove transformacije MIME-" "tipova, kliknite na %sopise transformacija%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Opcije transformacije" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8316,36 +8305,36 @@ msgstr "" "apostrof (\"'\") u te vrednosti, stavite obrnutu kosu crtu ispred njih (na " "primer '\\\\xyz' ili 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "nema" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primarni" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Tekst ključ" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8353,28 +8342,28 @@ msgid "" msgstr "" "Nema opisa za ovu transformaciju.
Molimo pitajte autora šta %s radi." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Dodaj %s polja" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Morate dodati barem jedno polje." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Pogon skladištenja" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Dodaj novog korisnika" diff --git a/po/sv.po b/po/sv.po index 724a28b909..ad81999ce8 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-30 21:07+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" @@ -66,7 +66,7 @@ msgstr "Sök" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Databaskommentar:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Tabellkommentarer" @@ -140,7 +140,7 @@ msgstr "Tabellkommentarer" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Kolumn" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Typ" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Default" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Länkar till" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Kommentarer" @@ -313,14 +313,14 @@ msgstr "Enbart data" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE före kopiering" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Lägg till %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Lägg till AUTO_INCREMENT värde" @@ -335,8 +335,8 @@ msgstr "Växla till den kopierade databasen" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -356,7 +356,7 @@ msgid "Edit or export relational schema" msgstr "Editera eller exportera relationsschema" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -664,7 +664,7 @@ msgid "Check tables having overhead" msgstr "Kontrollera tabeller som har overhead" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -726,7 +726,7 @@ msgstr "Datalexikon" msgid "Tracked tables" msgstr "Spårade tabeller" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -801,12 +801,12 @@ msgstr "Spåra tabell" msgid "Database Log" msgstr "Databas logg" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "Värden för kolumn \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Mata in varje värde i ett eget fält." @@ -1133,7 +1133,7 @@ msgstr "Ladda om privilegier" msgid "Removing Selected Users" msgstr "Tar bort valda användare" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Stäng" @@ -1141,7 +1141,7 @@ msgstr "Stäng" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Redigera" @@ -1357,7 +1357,7 @@ msgstr "Lägg till minst en variabel till serien" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1582,7 +1582,7 @@ msgstr "" "Misslyckades skapa diagrammets rutnät med den importerade configurationen. " "Återställer till ursprunglig konfiguration ..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1625,7 +1625,7 @@ msgstr "Använd variabel / formel" msgid "Test" msgstr "Test" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1754,7 +1754,7 @@ msgstr "Exekveringstid för frågor" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2275,7 +2275,7 @@ msgstr "Inga index är definierade!" msgid "Indexes" msgstr "Index" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2313,7 +2313,7 @@ msgstr "" "Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas " "bort." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2623,18 +2623,18 @@ msgid "shared" msgstr "delad" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tabeller" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2710,7 +2710,7 @@ msgstr "Ogiltigt serverindex: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2782,7 +2782,7 @@ msgstr "MySQL sa: " msgid "Failed to connect to SQL validator!" msgstr "Kunde inte ansluta till MySQL validerare" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Förklara SQL-kod" @@ -2794,11 +2794,11 @@ msgstr "Utan SQL-förklaring" msgid "Without PHP Code" msgstr "Utan PHP-kod" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Skapa PHP-kod" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Uppdatera" @@ -2807,7 +2807,7 @@ msgstr "Uppdatera" msgid "Skip Validate SQL" msgstr "Hoppa över SQL-validering" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Validera SQL-kod" @@ -2911,20 +2911,20 @@ msgid "Click to toggle" msgstr "Klicka för att växla" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3125,7 +3125,7 @@ msgid "Set value: %s" msgstr "Ange värde: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Återställ standardvärde" @@ -3288,66 +3288,54 @@ msgid "Default display direction" msgstr "Standard visningsriktning" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horisontell[/ kbd], [kbd]vertikal[/ kbd] eller en siffra som anger " -"högsta antal som den vertikala modellen använder" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Visa riktning för att ändra / skapa kolumner" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Flik som visas när du anger en databas" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Default fliken Databas" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Flik som visas när du går till en server" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Standardserver fliken" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Flik som visas när du går till en tabell" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Standard tabellflik" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Visa binärt innehåll som HEX som standard" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Visa binärt innehåll som HEX" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Visa databas som en lista i stället för en drop-down" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Visa databaser som en lista" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Visa serverlista som en lista istället för en drop-down" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Visa servrar som en lista" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3355,35 +3343,35 @@ msgstr "" "Inaktivera tabellen underhåll av en mängd operationer, som att optimera " "eller reparera den valda tabeller i en databas." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Inaktivera underhåll av många tabeller" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Redigera SQL-frågor i popup-fönster" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Redigera i fönstret" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Visa fel" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Samla fel" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Visa ikoner för varningar, fel och informations meddelanden" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Ikoniska fel" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3391,205 +3379,205 @@ msgstr "" "Ange antalet sekunder ett skript får köras ([kbd]0[/kbd] för ingen " "begränsning)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Maximal exekveringstid" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Spara som fil" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Filens teckenuppsättning" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Komprimering" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Sätt kolumnnamn på första raden" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Kolumnerna avgränsas av" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Kolumner föregås av" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Ersätt NULL med" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Ta bort CRLF tecken i kolumner" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Kolumner avslutas med" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Rader avslutas med" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel utgåva" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Databas namn" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Servernamn mall" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Mall för tabellnamn" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Dumpa tabell" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Inkludera tabellbeskrivning" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Tabellrubrik" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Fortsatt tabellrubrik" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Märk nyckel" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-typ" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Relationer" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Exportera metod" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Spara på server" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Skriv över befintlig fil(er)" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Kom ihåg mall för filnamn" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Använd citat-tecken runt tabell- och fältnamn" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL kompatibilitetläge" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "CREATE TABLE alternativ:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Skapad/Uppdaterad/Kontrollerad datum" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Använd fördröjda inläggningar" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Inaktivera kontroller av främmande nycklar" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "Använd hexadecimalt för BLOB" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Använd Iignore i inläggningar" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Syntax att använda när man infogar data" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Maximal längd på skapad fråga" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Export-typ" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Bifoga export i en transaktion" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Exportera tid i UTC" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "Tvinga säker anslutning när du använder phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Tvinga SSL-anslutning" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3597,148 +3585,148 @@ msgstr "" "Sorteringsordning för poster i en främmande nyckel-listruta; [kbd]innehåll[/" "kbd] är refererad data, [kbd]id[/kbd] är nyckelvärdet" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Ordning i främmande nyckel-listruta" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "En listruta kommer användas om färre objekt finns" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Begränsning för främmande nyckel" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Webbläsningsläge" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Anpassa webbläsningsläge" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Anpassa förvalda alternativ" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Utvecklare" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Inställningar för phpMyAdmin utvecklare" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Redigeringsläge" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Anpassa redigeringsläge" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Exportera standardvärden" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Anpassa standard exportalternativ" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funktioner" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Allmänt" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Välj några av de vanligaste alternativen" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Importera standardvärden" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Anpassa standardalternativ för import" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Importera / exportera" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Ange kataloger för import och export och komprimeringsalternativ" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Visningsalternativ för databaser" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigeringsram" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Anpassa navigeringsramens utseende" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Servrar" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Visningsalternativ för servrar" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Visningsalternativ för tabeller" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Huvudram" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "OpenDocument-format" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Andra grundinställningar" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Inställningar som inte passade någon annanstans" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Sidtitlar" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3748,22 +3736,22 @@ msgstr "" "dokumentationen[/a] för magiska strängar som kan användas för att få " "speciella värden." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Sökfönster" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Alternativ för sökfönster" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Säkerhet" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3771,23 +3759,23 @@ msgstr "" "Observera att phpMyAdmin endast är ett användargränssnitt och dess " "funktioner inte begränsar MySQL" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Grundläggande inställningar" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Verifiering" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Behörighetsinställningar" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Serverkonfiguration" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3795,15 +3783,15 @@ msgstr "" "Advancerad serverkonfiguration, ändra inte dessa alternativ om du inte vet " "vad de är till för" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Ange parametrar för anslutning till server" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Konfigurations lagring" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3813,55 +3801,55 @@ msgstr "" "funktionalitet, se [a@../Documentation.html#linked-tables]infrastruktur för " "länkade tabeller[/a] i dokumentationen" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Förändringar i spårning" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" "Spårning av ändringar i databasen. Kräver phpMyAdmin konfigurations lagring." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Anpassa exportalternativ" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Anpassa standardvärden för import" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Anpassa navigeringsram" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Anpassa huvudram" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL-frågor" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL-frågeruta" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "Anpassa länkar som visas i SQL-frågeruta" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Inställningar för SQL-frågor" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL validerare" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3873,43 +3861,43 @@ msgstr "" "[em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright " "2002 Upright Database Technology. Alla rättigheter reserverade.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Uppstart" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Anpassa startsidan" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Flikar" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Välj hur du vill att flikar ska fungera" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Textfält" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Anpassa textfält" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! text" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Varningar" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "Inaktivera några av de varningar som visas av phpMyAdmin" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3917,15 +3905,15 @@ msgstr "" "Aktivera [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a]-komprimering för " "import- och exportoperationer" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Extra parameterar för iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3933,11 +3921,11 @@ msgstr "" "Om aktiverat fortsätter phpMyAdmin att utföra fleruttrycksfrågor även om en " "av frågorna misslyckades" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ignorera fel i fleruttrycksfrågor" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3947,21 +3935,21 @@ msgstr "" "tidsbegränsningen. Detta kan vara ett bra sätt att importera stora filer, " "men det kan bryta transaktioner." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Partiell import: tillåt avbrott" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "Avbryt inte vid INSERT fel" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Ersätt tabelldata med fil" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3969,88 +3957,88 @@ msgstr "" "Standardformat; observera att denna lista beror på plats (databas, tabell) " "och endast SQL är alltid tillgängligt" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Format på importerad fil" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "Använd nyckelordet LOCAL" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Kolumn på första raden" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Importera inte tomma rader" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importera valutor ($5,00 till 5,00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importera procenttal med riktiga decimaler (12,00% till .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Antal förfrågningar att hoppa från start" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Partiell import: hoppa över frågor" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Använd inte AUTO_INCREMENT för nollvärden" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Utgångsläge för reglagen" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Hur många rader som kan infogas på en gång" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Antal infogade rader" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Mål för snabbåtkomst-ikon" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Visa logo i vänster ram" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Visa logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Visa val av server högst upp i vänstra ramen" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Visa serverval" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Minsta antal tabeller för att visa tabellen filter box" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Sträng som separerar databaser i olika trädnivåer" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Avskiljare för databasträd" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4058,39 +4046,39 @@ msgstr "" "Endast lätt version; visa databaser i ett träd (bestämt av avskiljaren " "definierad nedan)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Visa databaser i ett träd" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "Inaktivera detta om du vill se alla databaser samtidigt" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Använd lätt version" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Max djup i tabellträd" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Sträng som separerar tabeller i olika trädnivåer" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Avskiljare för tabellträd" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL där logotyp i navigeringsramen kommer att peka till" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logo länkadress" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4098,46 +4086,46 @@ msgstr "" "Öppna den länkade sidan i huvudfönstret ([kbd]main[/kbd]) eller i ett nytt " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logo-länk mål" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Markera server under muspekaren" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Aktivera framhävning" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Maximalt antal nyligen använa tabeller, ange 0 för att avaktivera" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Nyligen använda tabeller" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Använd mindre grafiskt intensiva flikar" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Lätta flikar" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Maximalt antal tecken som visas i alla icke-numeriska kolumner i " "bläddringsvyn" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Begränsa antalet kolumn tecken" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4147,11 +4135,11 @@ msgstr "" "utloggning endast för aktuell server. Satt till FALSKT gör det lätt att " "glömma att logga ut från andra servrar när den är ansluten till flera servrar" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Radera alla cookies vid utloggning" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4159,11 +4147,11 @@ msgstr "" "Ange om tidigareinloggningen ska återkallas eller inte vid " "autentiseringsläge med cookies" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Återkalla användarnamn" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4175,52 +4163,52 @@ msgstr "" "session, och kommer tas bort så snart webbläsaren stängs. Detta är " "rekommenderat för icke tillförlitliga miljöer." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Lagringsplats för inloggnings-cookie" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "Anger hur lång tid (i sekunder) som en inloggnings-cookie är giltig" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Giltighet för inloggnings-cookie" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "Dubbel storlek på textområdet för LONGTEXT kolumner" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "Större textarea för LONGTEXT" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Använd ikoner på huvudsidan" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "Maximalt antal tecken som används när en SQL-fråga visas" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "Maximal visad SQL-längd" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Användare kan inte ange ett högre värde" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "Maximalt antal databaser som visas i vänster ram och databaslista" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Maximalt antal databaser" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4229,19 +4217,19 @@ msgstr "" "Antal rader som visas vid visning av resultatet. Om resultatet innehåller " "fler rader, visas länkar för "Föregående" och "Nästa"." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Maximalt antal rader att visa" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Maximalt antal tabeller som visas i tabellista" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Maximalt antal tabeller" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4249,11 +4237,11 @@ msgstr "" "Inaktivera standardvarning vilken visas om mcrypt saknas för cookie " "autentisering" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt varning" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4261,43 +4249,43 @@ msgstr "" "Antal byte som ett skript har tillåtelse att allokera, t.ex. [kbd]32M[/kbd] " "([kbd]0[/kbd] för ingen begränsning)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Minnesgräns" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "Dessa är Redigera, Kopiera och Radera länkar" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Var länkarna i tabellraden visas" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Använd naturlig ordning vid sortering av tabell- och databasnamn" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Naturlig ordning" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Använd enbart ikoner, endast text eller både och" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Ikonbaserat navigeringsfält" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Använd GZip utmatningsbuffer för ökad hastighet i HTTP-överföringar" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip Utmatningsbuffer" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4305,19 +4293,19 @@ msgstr "" "[kbd]SMART[/kbd] - dvs fallande ordning för kolumner av typen TIME, DATE, " "DATETIME och TIMESTAMP, stigande ordning annars" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Förvald sorteringsordning" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Använd bestående anslutningar till MySQL-databaser" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Bestående anslutningar" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4327,23 +4315,23 @@ msgstr "" "någon av de nödvändiga tabellerna för phpMyAdmin Configuration Storage inte " "kunde hittas" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Saknade phpMyAdmin konfiguration lagringstabeller" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Ikoniska tabell transaktioner" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Hindra BLOB och kolumner BINARY från redigering" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Skydda binära kolumner" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4353,122 +4341,122 @@ msgstr "" "konfigurationslagring). Om inakiverad, så används JS-rutiner för att visa " "frågehistorik (förloras när fönstret stängs)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanent frågehistorik" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Antal frågor som sparas i historiken" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Längd på frågehistorik" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Flik som visas när man öppnar ett nytt frågefönster" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Default frågefönsterflik" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Höjd på sökfönster (i pixlar)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Fråga höjd på frågefönster" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Sökning fönster bredd (i pixlar)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Sökning fönsterbredd" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Välj vilka funktioner som kommer användas för konvertering av " "teckenuppsättning" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Omvandlingsmotor" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "Vid bläddring i tabeller, är sorteringen av varje tabell ihågkommen" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Kom ihåg tabellens sortering" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Upprepa rubrik varje X celler, [kbd]0[/kbd] avaktiverar den här funktionen" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Reparera rubriker" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Visa hjälpknappen istället för dokumentations text" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Visa hjälp-knappen" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "Spara alla redigerade celler omedelbart" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Katalog där exporten kan sparas på servern" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Spara katalog" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Lämna tomt om den inte används" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Host auktorisation för" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Lämna blankt för defaultvärden" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Behörighetsregler för host" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Tillåt inloggning utan lösenord" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Tillåt root-inloggning" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm namn att visa när man gör HTTP Auth" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4478,19 +4466,19 @@ msgstr "" "hårdvaruautentisering[/a] (inte placerad i din dokumentrotkatalog; förslag: /" "etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey konfigurationsfil" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Autentiseringsmetod att använda" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Autentiseringstyp" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4498,11 +4486,11 @@ msgstr "" "Lämna tomt för inget stöd för [a@http://wiki.phpmyadmin.net/pma/bookmark]" "bokmärken[/a], förslag: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Tabell för bokmärken" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4510,31 +4498,31 @@ msgstr "" "Lämna tomt för inget stöd för kolumnkommentarer/mime-typer, förslag: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Tabell för kolumninformation" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "Komprimera anslutning till MySQL-servern" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Komprimera anslutning" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Hur ansluta till servern, behåll [kbd]TCP[/ kbd] om du är osäker" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Anslutningstyp" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Lösenord för kontrollanvändare" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4543,19 +4531,19 @@ msgstr "" "information tillgänglig på [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" "[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Kontrollanvändare" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Räkna tabeller vid visning av databaslista" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Räkna tabeller" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4563,11 +4551,11 @@ msgstr "" "Lämna tomt för inget stöd för Designer, förslag: [kbd]pma_designer_coords[/" "kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Tabell för Designer" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4575,28 +4563,28 @@ msgstr "" "Mer information på [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] och [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Inaktivera användning av INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Vilket PHP-tillägg som ska användas; du bör använda mysqli om det stöds" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "PHP-tillägg att använda" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Dölj databaser som matchar reguljärt uttryck (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Dölj databaser" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4604,23 +4592,23 @@ msgstr "" "Lämna blankt för inget stöd för SQL-frågehistorik, förslag: [kbd]pma_history" "[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "Tabell för SQL-frågehistorik" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "Värdnamn där MySQL-servern körs" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Serverns värdnamn" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "URL för utloggning" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" @@ -4629,19 +4617,19 @@ msgstr "" "MaxTableUiprefs) senaste posten i \"table_uiprefs\" och tar automatiskt bort " "äldre poster" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Maximalt antal poster som sparats i \"table_uiprefs\" tabellen" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Försök ansluta utan lösenord" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Anslut utan lösenord" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4655,29 +4643,29 @@ msgstr "" "lista. Det är bara att skriva sina namn i ordning och använda [kbd]*[/kbd] i " "slutet för att visa resten i alfabetisk ordning." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Visa endast listade databaser" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Lämna tomt om inte config auth används" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Löseenord för config auth" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Lämna blankt för inget stöd för PDF-schema, förslag: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF-schema: Tabell för sidor" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4687,19 +4675,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] för komplett information. " "Lämna tomt för inget stöd. Förslag: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Databasnamn" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Port som MySQL-servern lyssnar på, lämna blankt för default" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Serverport" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4707,11 +4695,11 @@ msgstr "" "Lämna tomt för iatt inte spara nyligen använda användarinställningar " "tabeller för alla sessioner i databasen, förslag: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Nyligen använd tabell" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4719,19 +4707,19 @@ msgstr "" "Lämna tomt för inget stöd för [a@http://wiki.phpmyadmin.net/pma/relation]" "relationslänkar[/a], förslag: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Relations tabell" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "SQL-kommando för att hämta tillgängliga databaser" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES-kommando" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4739,42 +4727,42 @@ msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/" "a] för ett exempel" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Signon sessionsnamn" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Sockel som MySQL-servern lyssnar på, lämna tomt för default" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "Aktivera SSL för anslutning till MySQL-servern" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "Använd SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Lämna tomt för inget stöd för PDF-schema, förslag: [kbd]pma_table_coords[/" "kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF-schema: tabellkoordinater" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4782,11 +4770,11 @@ msgstr "" "Tabell för att beskriva fält att visa, lämna tomt för inget stöd; förslag: " "[kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Visa tabellkolumner" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4794,11 +4782,11 @@ msgstr "" "Lämna tomt för iatt inte spara nyligen använda användarinställningstabeller " "för alla sessioner, förslag: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "Tabell för inställningar av användargränssnittet" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4806,11 +4794,11 @@ msgstr "" "Om DROP DATABASE IF EXISTS finns, kommando skall läggas till som första " "raden i loggen när man skapar en databas." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "Lägg till DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4818,11 +4806,11 @@ msgstr "" "Om DROP TABLE IF EXISTS finns, kommando skall läggas till som första raden i " "loggen när man skapar en tabell" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "Lägg till DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4830,21 +4818,21 @@ msgstr "" "Om DROP VIEW IF EXISTS finns, kommando skall läggas till som första raden i " "loggen när man skapar en vy" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "Lägg till DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Definierar lista med påståenden vilken auto-creation använder för nya " "versioner." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "Kommandon att spåra" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4852,11 +4840,11 @@ msgstr "" "Lämna tomt för inget stöd för SQL-frågehistorik, förslag: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "SQL-fråga spårningstabellen" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4864,11 +4852,11 @@ msgstr "" "Huruvida spårnings mekanismen skapar versioner för tabeller och vyer " "automatiskt." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Automatiskt skapa versioner" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" @@ -4876,15 +4864,15 @@ msgstr "" "Lämna tomt för att inga användarinställningar ska lagras i databasen, " "förslag: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Användarinställningar lagringstabell" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Användare för config auth" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4892,11 +4880,11 @@ msgstr "" "Inaktivera ifall du vet att dina tabeller pma_* är aktuella. Detta " "förhindrar kompabilitetskontroller och ökar därmed prestanda" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Utökad kontroll" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4904,19 +4892,19 @@ msgstr "" "En användarvänlig beskrivning av denna server. Lämna tomt för att visa " "värdnamnet istället." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Beskrivande namn för denna server" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Ifall en användare ska få se en "visa alla(rader)" knapp" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Tillåt att visa alla rader" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4926,15 +4914,15 @@ msgstr "" "autentisering eftersom lösenordet är hårdkodat i konfigurationsfilen; detta " "begränsar inte möjligheten att utföra samma kommando direkt" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Visa ändra lösenord-formulär" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Visa skapa databas-formulär" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" @@ -4942,37 +4930,37 @@ msgstr "" "Definierar oavsett om typ display riktning alternativ visas när du bläddrar " "en tabell" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Visa visnings riktning" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "Anger om typ-fält bör först visas i redigera / infogningsläget" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Visa fälttyper" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Visa funktionsfälten i ändra/infoga-läge" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Visa funktionsfält" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "Om du vill visa tips eller inte" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "Visa tips" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4980,31 +4968,31 @@ msgstr "" "Visar länk till [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "resultatet" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "Visa phpinfo()-länk" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Visa detaljerad MySQL-serverinformation" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Anger om SQL-frågor som genereras av phpMyAdmin ska visas" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Visa SQL-frågor" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "Tillåt visning av databas- och tabellstatistik (t.ex.av utrymme)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Visa statistik" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5012,11 +5000,11 @@ msgstr "" "Om tooltip används och en databaskommentar är angiven, kommer denna vända " "kommentaren och det riktiga namnet" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Visa databaskommentar istället för dess namn" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5028,30 +5016,30 @@ msgstr "" "['LeftFrameTableSeparator'] , så endast mappen kallas för detta alias, " "tabellnamnet självt förblir oförändrat" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Visa tabellkommentar istället för dess namn" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Visa tabellkommentarer i tooltip" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Markera använda tabeller och gör det möjligt att visa databaser med låsta " "tabeller" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Hoppa över låsta tabeller" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "Kräver att SQL Validator är aktiverad" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5061,7 +5049,7 @@ msgstr "Kräver att SQL Validator är aktiverad" msgid "Password" msgstr "Lösenord" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5069,11 +5057,11 @@ msgstr "" "[strong]Varning:[/strong] kräver PHP SOAP tillägg eller installation av PEAR " "SOAP" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "Aktivera SQL Validator" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5081,12 +5069,12 @@ msgstr "" "Om du har ett eget användarnamn, ange det här (default är [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Användarnamn" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5094,19 +5082,19 @@ msgstr "" "Föreslå ett daabasnamn i "Skapa databas"-formuläret (om möjligt) " "eller behåll textfältet tomt" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Föreslå nytt databasnamn" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "En varning visas på huvudsidan om Suhosin upptäcks" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin varning" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5114,11 +5102,11 @@ msgstr "" "Textareans storlek (kolumner) i redigeringsläge, detta värde kommer betonas " "för SQL-frågans textfält (* 2) och för frågan fönster (* 1,25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Textarea kolumner" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5126,31 +5114,31 @@ msgstr "" "Textareans storlek (rader) i redigeringsläge, detta värde kommer betonas för " "SQL-fråga textfält (* 2) och för frågan fönster (* 1,25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Textarea rader" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Titel på webbläsarfönstret när en databas är vald" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Titel på webbläsarfönstret när ingenting är markerat" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Standard titel" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Titel på webbläsarfönstret när en server är vald" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Titel på webbläsarfönstret när en tabell är markerad" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5162,27 +5150,27 @@ msgstr "" "som kommer från proxyservern 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/" "kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "Lista med betrodda proxies för IP allow/deny" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Katalog på servern där du kan ladda upp filer för import" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Uppladdningskatalogen" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Tillåt sökning i hela databasen" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Använd databassökning" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5190,11 +5178,11 @@ msgstr "" "När det är avstängt, kan användare inte ange något av alternativen nedan, " "oberoende av kryssrutan till höger" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Aktivera fliken Utvecklare i inställningar" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5204,19 +5192,19 @@ msgstr "" "import.lib.php för standardvärden för hur många frågor ett uttryck kan " "innehålla." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Utförliga fleruttrycksfrågor" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Sök efter senaste version" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Aktivera kontroll efter senaste version på phpMyAdmin hemsida" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5224,7 +5212,7 @@ msgstr "Aktivera kontroll efter senaste version på phpMyAdmin hemsida" msgid "Version check" msgstr "Versionskontroll" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5232,7 +5220,7 @@ msgstr "" "Aktivera [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a]-" "komprimering för import- och exportoperationer" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5252,47 +5240,47 @@ msgstr "HTTP-autentisering" msgid "Signon authentication" msgstr "Signon autentisering" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV med LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "OpenDocument kalkylblad" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Snabb" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Anpassad" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Databas exportalternativ" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV för MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "OpenDocument text" @@ -5464,9 +5452,8 @@ msgstr "Skapa tabell" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Namn" @@ -5807,7 +5794,7 @@ msgid "Hide" msgstr "Dölj" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Webbläsaromvandling" @@ -6737,7 +6724,7 @@ msgstr "Ogiltigt antal fält i CSV indata på rad %d." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Tabellnamn" @@ -7427,7 +7414,7 @@ msgstr "Parametrar" msgid "Direction" msgstr "Riktning" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Längd/Värden" @@ -7685,7 +7672,7 @@ msgstr "Innehållsförteckning" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Attribut" @@ -7981,7 +7968,7 @@ msgstr "Tabellen verkar vara tom!" msgid "Tracking of %s.%s is activated." msgstr "Spårning av %s.%s är aktiverad." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7993,7 +7980,7 @@ msgstr "" "ett enkelcitat (\"'\") i värdena, skriv ett backslash före tecknet (t.ex. " "'\\\\xyz' eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8001,13 +7988,13 @@ msgstr "" "För standardvärden, ange endast ett enstaka värde, utan bakåtstreck eller " "citattecken, enligt formatet: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Index" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8016,11 +8003,11 @@ msgstr "" "För en lista med tillgängliga omvandlingsparametrar och deras MIME-" "typomvandlingar, klicka på %somvandlingsbeskrivningar%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Omvandlingsparametrar" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8032,34 +8019,34 @@ msgstr "" "enkelcitat (\"'\") i värdena, skriv ett bakåtstreck före tecknet (t.ex. '\\" "\\xyz' eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "ENUM eller SET data för långt?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Få mer redigerings utrymme" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Inget" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Som definierat:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Primär" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Fulltext" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8068,25 +8055,25 @@ msgstr "" "Ingen beskrivning för denna omvandling finns tillgänglig.
Vänligen " "fråga upphovsmannen vad %s gör." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Lägg till %s fält" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "Du måste lägga till åtminstone en kolumn." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Lagringsmotor" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Partitionsdefinition" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Lägg till ett värde" @@ -13013,6 +13000,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert är satt till 0" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horisontell[/ kbd], [kbd]vertikal[/ kbd] eller en siffra som anger " +#~ "högsta antal som den vertikala modellen använder" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Visa riktning för att ändra / skapa kolumner" + #~ msgid "Create table on database %s" #~ msgstr "Skapa ny tabell i databas %s" diff --git a/po/ta.po b/po/ta.po index ce0351defe..703597c6f4 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-08-23 10:51+0200\n" "Last-Translator: Sajeepan Yogenthiran \n" "Language-Team: Tamil \n" @@ -69,7 +69,7 @@ msgstr "தேடு" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -131,7 +131,7 @@ msgid "Database comment: " msgstr "தரவுத்தள கருத்துரை" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "அட்டவணைக் கருத்துரைகள்" @@ -141,7 +141,7 @@ msgstr "அட்டவணைக் கருத்துரைகள்" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -157,7 +157,7 @@ msgstr "நிரல்" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -169,7 +169,7 @@ msgstr "வகை" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -180,7 +180,7 @@ msgstr "வெற்று" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "முன்னிருப்பு" @@ -194,13 +194,13 @@ msgid "Links to" msgstr "இணைப்பு" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "கருத்துரைகள்" @@ -314,14 +314,14 @@ msgstr "தரவுகளை மட்டும்" msgid "CREATE DATABASE before copying" msgstr "பிரதிசெய்யமுன் தரவுத்தளத்தை உருவாக்கு" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்" @@ -336,8 +336,8 @@ msgstr "பிரதியான தரவுதளத்துக்கு ம #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -358,7 +358,7 @@ msgid "Edit or export relational schema" msgstr "தொடர்புசார் திட்டத்தை திருத்த அல்லது ஏற்ற" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -666,7 +666,7 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -730,7 +730,7 @@ msgstr "தரவு அகராதி" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -805,12 +805,12 @@ msgstr "அட்டவணைத் தடம்" msgid "Database Log" msgstr "தரவுத்தளப்பதிகை" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1128,7 +1128,7 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "மூடு" @@ -1136,7 +1136,7 @@ msgstr "மூடு" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "தொகு" @@ -1348,7 +1348,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1556,7 +1556,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1601,7 +1601,7 @@ msgstr "" msgid "Test" msgstr "சோதனை" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1730,7 +1730,7 @@ msgstr "வினவல் நிறைவேற்றுகை நேரம்" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2253,7 +2253,7 @@ msgstr "" msgid "Indexes" msgstr "சுட்டுகள்" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2289,7 +2289,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2589,18 +2589,18 @@ msgid "shared" msgstr "பகிரப்பட்டது" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "அட்டவணைகள்" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2672,7 +2672,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2744,7 +2744,7 @@ msgstr "MySQL சொன்னது:" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "" @@ -2756,11 +2756,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP குறிமுறை உருவாக்கு" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "புதுப்பி" @@ -2769,7 +2769,7 @@ msgstr "புதுப்பி" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "" @@ -2873,20 +2873,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "கட்டமைப்பு" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3085,7 +3085,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3232,565 +3232,555 @@ msgid "Default display direction" msgstr "" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Add into comments" msgid "Display errors" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Action" msgid "Authentication" msgstr "செயல்" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3798,283 +3788,283 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "புதிய களத்தை சேர்க்க" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "எச்சரிக்கை" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4082,436 +4072,436 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4520,325 +4510,325 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4846,28 +4836,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -4877,88 +4867,88 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4966,56 +4956,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "புதிய பதிப்பை பார்வையிடவும்" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5023,13 +5013,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5049,47 +5039,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5258,9 +5248,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "" @@ -5588,7 +5577,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "" @@ -6433,7 +6422,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7108,7 +7097,7 @@ msgstr "" msgid "Direction" msgstr "செயல்" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "" @@ -7378,7 +7367,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "" @@ -7660,7 +7649,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7668,30 +7657,30 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -7699,62 +7688,62 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s களத்தை சேர்க்க" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new User" msgid "+ Add a value" diff --git a/po/te.po b/po/te.po index 1d7f870d7b..00f762cf1e 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" @@ -67,7 +67,7 @@ msgstr "శోధించు" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -129,7 +129,7 @@ msgid "Database comment: " msgstr "డేటాబేస్ వ్యాఖ్య:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "పట్టిక వ్యాఖ్యలు" @@ -140,7 +140,7 @@ msgstr "పట్టిక వ్యాఖ్యలు" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -158,7 +158,7 @@ msgstr "ఆజ్ఞ" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -170,7 +170,7 @@ msgstr "రకం" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -181,7 +181,7 @@ msgstr "" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "అప్రమేయం" @@ -195,13 +195,13 @@ msgid "Links to" msgstr "" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "వ్యాఖ్యలు" @@ -317,14 +317,14 @@ msgstr "డేటా మాత్రమే" msgid "CREATE DATABASE before copying" msgstr "కాపీ చేయబోయే ముందు డేటాబేస్ సృష్టించు" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "%s cErcu" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "" @@ -339,8 +339,8 @@ msgstr "" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -359,7 +359,7 @@ msgid "Edit or export relational schema" msgstr "" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -677,7 +677,7 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -743,7 +743,7 @@ msgid "Tracked tables" msgstr "" # మొదటి అనువాదము -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -818,12 +818,12 @@ msgstr "" msgid "Database Log" msgstr "" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1155,7 +1155,7 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "మూసివేయి" @@ -1163,7 +1163,7 @@ msgstr "మూసివేయి" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "మార్చు" @@ -1390,7 +1390,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1613,7 +1613,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1664,7 +1664,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1817,7 +1817,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2337,7 +2337,7 @@ msgstr "" msgid "Indexes" msgstr "" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2373,7 +2373,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2683,18 +2683,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "పట్టికలు" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2768,7 +2768,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2841,7 +2841,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "" @@ -2853,11 +2853,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "" @@ -2866,7 +2866,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "" @@ -2981,20 +2981,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "నిర్మాణాకృతి" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3197,7 +3197,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3344,567 +3344,557 @@ msgid "Default display direction" msgstr "" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display logo" msgid "Display errors" msgstr "చిహ్నాన్ని చూపించు" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "సంబంధాలు" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "ఎగుమతి పద్ధతి" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "ఎగుమతి రకం" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "విశేషాలు" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "సాధారణ" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "దిగుమతి / ఎగుమతి" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "మైక్రోసాఫ్ట్ ఆఫీస్" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "ఓపెన్ డాక్యుమెంట్" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "ఇతర ప్రముఖ అమరికలు" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "పుట శీర్షికలు" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "భద్రత" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "ప్రాధమిక అమరికలు" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "అధీకరణ" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "అధీకరణ అమరికలు" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "సేవకి స్వరూపణం" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 #, fuzzy #| msgid "Server configuration" msgid "Configuration storage" msgstr "సేవకి స్వరూపణం" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL చరిత్ర" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3912,282 +3902,282 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Add new field" msgid "Text fields" msgstr "క్రొత్త ఫీల్డ్ చేర్చు" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "హెచ్చరికలు" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Comments" msgid "Column names in first row" msgstr "వ్యాఖ్యలు" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "చిహ్నాన్ని చూపించు" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4195,436 +4185,436 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "గరిష్ఠ పట్టికలు" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "సహజ క్రమం" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "సహాయపు బొత్తాన్ని చూపించు" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "ఉపయోగించకపోతే ఖాళీగా వదిలేయండి" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "అనుసంధాన రకం" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4633,28 +4623,28 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4662,306 +4652,306 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "డేటాబేస్" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "User preferences" msgid "UI preferences table" msgstr "వాడుకరి అభిరుచులు" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Show more actions" msgid "Show display direction" msgstr "మరిన్ని చర్యలను చూపించు" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show" msgid "Show hint" msgstr "చూపించు" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "గణాంకాలను చూపించు" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4969,28 +4959,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5000,89 +4990,89 @@ msgstr "" msgid "Password" msgstr "సంకేతపదం" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "వాడుకరిపేరు" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "క్రొత్త డేటాబేస్ పేరును సూచించుము" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Table comments" msgid "Textarea columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "అప్రమేయ శీర్షిక" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5090,56 +5080,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5147,13 +5137,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5175,47 +5165,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "మైక్రోసాఫ్ట్ వర్డ్ 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5390,9 +5380,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "పేరు" @@ -5724,7 +5713,7 @@ msgid "Hide" msgstr "దాచు" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "" @@ -6581,7 +6570,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "పట్టిక పేరు" @@ -7289,7 +7278,7 @@ msgstr "" msgid "Direction" msgstr "నేరు లంకెలు" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "పొడవు/విలువలు" @@ -7576,7 +7565,7 @@ msgstr "విషయ సూచిక" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "" @@ -7859,7 +7848,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7867,30 +7856,30 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -7898,34 +7887,34 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "ఏమీలేదు" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "పూర్తిపాఠ్యం" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -7933,30 +7922,30 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "స్పందనలకు చేర్చు" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new User" msgid "+ Add a value" diff --git a/po/th.po b/po/th.po index 1b8f05f287..646f593f2e 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-07-24 11:50+0200\n" "Last-Translator: Waitaya Krongapiradee \n" "Language-Team: thai \n" @@ -65,7 +65,7 @@ msgstr "ค้นหา" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -127,7 +127,7 @@ msgid "Database comment: " msgstr "หมายเหตุของฐานข้อมูล: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "หมายเหตุของตาราง" @@ -137,7 +137,7 @@ msgstr "หมายเหตุของตาราง" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -153,7 +153,7 @@ msgstr "สดมภ์" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -165,7 +165,7 @@ msgstr "ชนิด" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -176,7 +176,7 @@ msgstr "ว่างเปล่า (null)" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "ค่าปริยาย" @@ -190,13 +190,13 @@ msgid "Links to" msgstr "เชื่อมไปยัง" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "หมายเหตุ" @@ -310,14 +310,14 @@ msgstr "เฉพาะข้อมูล" msgid "CREATE DATABASE before copying" msgstr "สร้างฐานข้อมูลก่อนคัดลอก" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "เพิ่ม %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" @@ -332,8 +332,8 @@ msgstr "สลับไปยังฐานข้อมูลที่ถูก #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -352,7 +352,7 @@ msgid "Edit or export relational schema" msgstr "แก้ไข หรือส่งออก รีเลชันแนล สกีมา" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -667,7 +667,7 @@ msgid "Check tables having overhead" msgstr "ตรวจสอบตารางที่มี overhead" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -733,7 +733,7 @@ msgstr "พจนานุกรมข้อมูล" msgid "Tracked tables" msgstr "ตารางที่ถูกติดตาม" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -809,12 +809,12 @@ msgstr "ติดตามตาราง" msgid "Database Log" msgstr "Log ของฐานข้อมูล" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "ค่าสำหรับคอลัมน์ \"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "ป้อนค่าในช่องต่างๆ" @@ -1148,7 +1148,7 @@ msgstr "สิทธิแบบโกลบอล" msgid "Removing Selected Users" msgstr "ถอนผู้ใช้ที่เลือก" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1156,7 +1156,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "แก้ไข" @@ -1391,7 +1391,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1616,7 +1616,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1666,7 +1666,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1822,7 +1822,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2394,7 +2394,7 @@ msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!" msgid "Indexes" msgstr "ดัชนี" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2431,7 +2431,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2733,18 +2733,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "ตาราง" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2818,7 +2818,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2890,7 +2890,7 @@ msgstr "MySQL แสดง: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "อธิบาย SQL" @@ -2902,11 +2902,11 @@ msgstr "ไม่ต้องอธิบาย SQL" msgid "Without PHP Code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "เรียกใหม่" @@ -2915,7 +2915,7 @@ msgstr "เรียกใหม่" msgid "Skip Validate SQL" msgstr "ไม่ต้องตรวจสอบ SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "ตรวจสอบ SQL" @@ -3029,20 +3029,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "โครงสร้าง" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3255,7 +3255,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3405,135 +3405,125 @@ msgid "Default display direction" msgstr "สถิติฐานข้อมูล" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "การดูแลรักษาตาราง" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "ความสามารถด้านการแสดงผล" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "ส่งมาเป็นไฟล์" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "ชุดอักขระของไฟล์ (character set):" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "รูปแบบ" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "บีบอัดข้อมูล" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3542,69 +3532,69 @@ msgstr "บีบอัดข้อมูล" msgid "Put columns names in the first row" msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "คร่อมฟิลด์ด้วย" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "เครื่องหมายสำหรับ escape char" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "แทนที่ NULL เป็น" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "จบแถวด้วย" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "จบแถวด้วย" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3612,399 +3602,399 @@ msgstr "รูปแบบของชื่อไฟล์" msgid "Dump table" msgstr "%s ตาราง" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "คำอธิบายตาราง" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 #, fuzzy #| msgid "Table caption" msgid "Continued table caption" msgstr "คำอธิบายตาราง" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "รีเลชัน" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "ส่งออก" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "เขียนทับแฟ้มที่มีอยู่แล้ว" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "ใส่ 'backqoute' ให้กับชื่อตารางและฟิลด์" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 #, fuzzy msgid "Use delayed inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 #, fuzzy #| msgid "Extended inserts" msgid "Use ignore inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "ไม่มีตาราง" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "ข้อมูล CSV (คั่นด้วยเครื่องหมายลูกน้ำ \",\")" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy msgid "General" msgstr "สร้างโดย" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "นำเข้าไฟล์" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "สถิติฐานข้อมูล" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 #, fuzzy msgid "Servers" msgstr "เซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "เอกสารอ้างอิง" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "หมายเลขหน้า:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "หน้าต่างคำค้น" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "เอกสารอ้างอิง" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "คำค้น SQL" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "คำค้น SQL" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "คำค้น SQL" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-history" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4012,289 +4002,289 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "สถานะ" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "ตาราง " -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Use text field" msgid "Customize text input fields" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "เขียนทับด้วยข้อมูลจากไฟล์" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "เลิกติดตามตาราง" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4302,452 +4292,452 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "ขีดจำกัดของทรัพยากร" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "เรียงค่าในตารางตาม" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "หน้าต่างคำค้น" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "หน้าต่างคำค้น" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "หน้าต่างคำค้น" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "เปลี่ยนชื่อตารางเป็น" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "การเชื่อมต่อ" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "ไม่มีตาราง" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "จัดระเบียบตาราง" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "ไม่มีฐานข้อมูล" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4756,345 +4746,345 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "ฐานข้อมูล" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "วิเคราะห์ตาราง" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "ซ่อมแซมตาราง" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "แสดงหมายเหตุของคอลัมน์" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "จัดระเบียบตาราง" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "คำสั่ง" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy msgid "Automatically create versions" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "สถิติฐานข้อมูล" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy msgid "Show field types" msgstr "แสดงตาราง" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "แสดงกริด" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "แสดงคำค้นแบบเต็ม" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "สถิติของแถว" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5102,28 +5092,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5133,91 +5123,91 @@ msgstr "" msgid "Password" msgstr "รหัสผ่าน" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "ชื่อผู้ใช้:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ค่าปริยาย" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5225,56 +5215,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5282,13 +5272,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5308,48 +5298,48 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 #, fuzzy msgid "Database export options" msgstr "สถิติฐานข้อมูล" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "ข้อมูล CSV สำหรับไมโครซอฟต์เอ็กเซล" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5521,9 +5511,8 @@ msgstr "เริ่มหน้าใหม่" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "ชื่อ" @@ -5901,7 +5890,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 #, fuzzy msgid "Browser transformation" msgstr "การแปลงที่เรียกใช้ได้" @@ -6785,7 +6774,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7486,7 +7475,7 @@ msgstr "" msgid "Direction" msgstr "สร้างเมื่อ" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "ความยาว/เซต*" @@ -7782,7 +7771,7 @@ msgstr "สารบัญ" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "แอตทริบิวต์" @@ -8092,7 +8081,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8109,30 +8098,30 @@ msgstr "" ">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") " "เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "ดัชนี" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "ตัวเลือกการแปลง" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -8144,63 +8133,63 @@ msgstr "" ">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") " "เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "ไม่มี" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "ไพรมารี" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "ข้อความเต็ม (fulltext)" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "ไม่ปรากฏรายละเอียดสำหรับการแปลงนี้.
กรุณาสอบถามผู้เขียนว่า, %s ทำอะไร." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "เพิ่มผู้ใช้ใหม่" diff --git a/po/tr.po b/po/tr.po index 418d9db5eb..099b9ebfee 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-29 12:00+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" @@ -66,7 +66,7 @@ msgstr "Ara" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Veritabanı yorumu: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Tablo yorumları" @@ -140,7 +140,7 @@ msgstr "Tablo yorumları" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Sütun" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Türü" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Boş" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Varsayılan" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Bağlantı verilen:" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Yorumlar" @@ -313,14 +313,14 @@ msgstr "Sadece veri" msgid "CREATE DATABASE before copying" msgstr "Kopyalamadan önce VERİTABANI OLUŞTUR" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "%s ekle" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" @@ -335,8 +335,8 @@ msgstr "Kopyalanmış veritabanına geç" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Bağlantılı şemayı dışa aktar veya düzenle" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -663,7 +663,7 @@ msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -725,7 +725,7 @@ msgstr "Veri sözlüğü" msgid "Tracked tables" msgstr "İzlenen tablolar" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -800,12 +800,12 @@ msgstr "Tabloyu izle" msgid "Database Log" msgstr "Veritabanı Günlüğü" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "\"%s\" sütunu için değerler" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "Her bir değeri ayrı alana girin." @@ -1136,7 +1136,7 @@ msgstr "Yetkiler Yeniden Yükleniyor" msgid "Removing Selected Users" msgstr "Seçili Kullanıcılar Kaldırılıyor" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Kapat" @@ -1144,7 +1144,7 @@ msgstr "Kapat" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Düzenle" @@ -1360,7 +1360,7 @@ msgstr "Lütfen diziye en az bir değişken ekleyin" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1586,7 +1586,7 @@ msgstr "" "İçe aktarılan yapılandırma ile çizelge çizgilerinin oluşturulması başarısız. " "Varsayılan yapılandırmaya sıfırlanıyor..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1629,7 +1629,7 @@ msgstr "Kullanılan değişken / formül" msgid "Test" msgstr "Sınama" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1758,7 +1758,7 @@ msgstr "Sorgu yürütme süresi" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2285,7 +2285,7 @@ msgstr "Tanımlı indeks yok!" msgid "Indexes" msgstr "İndeksler" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2323,7 +2323,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2630,18 +2630,18 @@ msgid "shared" msgstr "paylaşılmış" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tablolar" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2719,7 +2719,7 @@ msgstr "" "%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırma dosyanızı gözden " "geçirin." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2791,7 +2791,7 @@ msgstr "MySQL çıktısı: " msgid "Failed to connect to SQL validator!" msgstr "SQL onaylayıcısına bağlanma başarısız oldu!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL'i açıkla" @@ -2803,11 +2803,11 @@ msgstr "SQL Açıklamasını atla" msgid "Without PHP Code" msgstr "PHP Kodsuz" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP Kodu oluştur" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Yenile" @@ -2816,7 +2816,7 @@ msgstr "Yenile" msgid "Skip Validate SQL" msgstr "SQL Onaylamayı atla" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL'i onayla" @@ -2920,20 +2920,20 @@ msgid "Click to toggle" msgstr "Değiştirmek için tıklayın" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Yapı" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3132,7 +3132,7 @@ msgid "Set value: %s" msgstr "Ayar değeri: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Varsayılan değeri geri yükle" @@ -3297,66 +3297,54 @@ msgid "Default display direction" msgstr "Varsayılan görüntü talimatı" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]yatay[/kbd], [kbd]dikey[/kbd] veya hangi dikey modelin kullanılması " -"için en fazla sayıyı gösteren numara" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "Sütunları değiştirmek/oluşturmak için talimatı göster" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Veritabanı girildiğinde görüntülenen sekme" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Varsayılan veritabanı sekmesi" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Sunucu girildiğinde görüntülenen sekme" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Varsayılan sunucu sekmesi" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Tablo girildiğinde görüntülenen sekme" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Varsayılan tablo sekmesi" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "Binari içerikleri varsayılandan HEX olarak göster" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Binari içerikleri HEX olarak göster" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "Veritabanı listelemeyi aşağı açılır menü yerine liste olarak gösterir" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Veritabanlarını liste olarak görüntüle" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "Sunucu listelemeyi aşağı açılır menü yerine liste olarak gösterir" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Sunucuları liste olarak görüntüle" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." @@ -3364,35 +3352,35 @@ msgstr "" "Bir veritabanının seçili tablolarını uyarlama ya da onarma gibi toplu tablo " "bakımı işlemlerini etkisizleştirir." -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "Çoklu tablo bakımı etkisiz" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "Açılır pencere içinde SQL sorgularını düzenle" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "Pencerede düzenle" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Hataları göster" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "Hataları toparla" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "Uyarı, hata ve bilgi mesajları için simgeleri göster" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "Sembolik hatalar" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3400,205 +3388,205 @@ msgstr "" "Betiğin çalışmasına izin verilecek saniye sayısı ayarıdır (sınırsız için " "[kbd]0[/kbd])" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "En fazla yürütme süresi" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Dosya olarak kaydet" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Dosyanın karakter grubu" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Biçim" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Sıkıştırma" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "İlk satır içine sütun adlarını koy" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Sütunu kapsayan:" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Sütunu dolduran:" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "NULL'u bunla değiştir:" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "Sütunlardaki CRLF karakterlerini kaldır" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Sütunu sonlandıran:" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Satırı sonlandıran:" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel yapısı" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Veritabanı adı şablonu" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Sunucu adı şablonu" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Tablo adı şablonu" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Tabloyu dökümle" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Tablo başlığını dahil et" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Tablo başlığı" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Devam eden tablo başlığı" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Etiket anahtarı" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME türü" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Bağlantılar" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Dışa aktarma yöntemi" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Sunucuda kaydet" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Mevcut dosya(ların)nın üzerine yaz" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Dosya adı şablonunu hatırla" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Tablo ve sütun adlarını ters tırnaklarla kapattır" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL uyumluluk kipi" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "CREATE TABLE seçenekleri:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Oluşturma/Güncelleme/Denetleme tarihleri" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Gecikmiş eklemeleri kullan" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Dış anahtar kontrolünü etkisizleştir" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "BLOB için onaltılık düzen kullan" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Yoksayılan eklemeleri kullan" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "Veri eklenirken kullanılacak sözdizimi" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Oluşturulan sorgunun azami uzunluğu" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Dışa aktarma türü" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "İşlem içinde dışa aktarmayı kapsa" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "UTC olarak dışa aktarma zamanı" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "phpMyAdmin kullanırken güvenli bağlantıya zorlar" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "SSL bağlantıya zorla" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3606,148 +3594,148 @@ msgstr "" "Dış anahtar aşağı açılır kutusu içindeki öğeler için sıralama düzeni; [kbd]" "content[/kbd] başvurulan veridir, [kbd]id[/kbd] anahtar değerdir" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Dış anahtar aşağı açılır düzeni" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Eğer az öğe bulunuyorsa aşağı açılır kutu kullanılacaktır" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Dış anahtar sınırı" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Gözatma kipi" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Gözatma kipini özelleştirir" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "Varsayılan seçenekleri özelleştirir" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Geliştirici" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "phpMyAdmin geliştiricileri için ayarlar" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Düzenleme kipi" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Düzenleme kipini özelleştirir" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Dışa aktarma varsayılanları" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Varsayılan dışa aktarma seçeneklerini özelleştirir" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Özellikler" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Genel" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "Bazı çoğunlukla kullanılmış seçenekleri ayarla" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "İçe aktarma varsayılanları" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Varsayılan genel içe aktarma seçeneklerini özelleştirir" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "İçe Aktar / Dışa Aktar" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "İçe ve dışa aktarma dizinlerini ve sıkıştırma seçeneklerini ayarlar" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Veritabanlarının görüntü seçenekleri" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Rehber çerçeve" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Rehber çerçevenin görünümünü özelleştirir" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Sunucular" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Sunucuların görüntü seçenekleri" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Tabloların görüntü seçenekleri" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Ana çerçeve" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Open Belgesi" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Diğer çekirdek ayarlar" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Başka hiçbir yere uymayan ayarlar" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Sayfa başlığı" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3757,22 +3745,22 @@ msgstr "" "kullanılabilecek sihirli dizgiler için [a@Documentation.html#cfg_TitleTable]" "belgeden[/a] yararlanın." -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Sorgu penceresi" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Sorgu penceresi seçeneklerini özelleştirir" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Güvenlik" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3780,23 +3768,23 @@ msgstr "" "Lütfen unutmayın, phpMyAdmin sadece bir arabirimdir ve özellikleri MySQL'i " "sınırlandırmaz" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Temel ayarlar" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Kimlik doğrulama" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Kimlik doğrulama ayarları" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Sunucu yapılandırması" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3804,15 +3792,15 @@ msgstr "" "Gelişmiş sunucu yapılandırması, ne için olduklarını bilmedikçe bu " "seçenekleri değiştirmeyin" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Sunucu bağlantı parametrelerini girin" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "Yapılandırma depolama" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3822,11 +3810,11 @@ msgstr "" "yapılandırır, belgelerde [a@Documentation.html#linked-tables]phpMyAdmin " "yapılandırma depolama[/a] kısmına bakın" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "Değişiklikleri izleme" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3834,44 +3822,44 @@ msgstr "" "İzlenen değişiklikler veritabanında yapıldı. phpMyAdmin yapılandırma " "depolaması gerekir." -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Dışa aktarma seçeneklerini özelleştir" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "İçe aktarma varsayılanlarını özelleştir" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Rehber çerçeveyi özelleştir" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Ana çerçeveyi özelleştir" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL sorguları" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL Sorgu kutusu" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "SQL Sorgu kutularında gösterilecek bağlantıları özelleştirir" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL sorguları ayarları" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL Onaylayıcı" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3884,43 +3872,43 @@ msgstr "" "Onaylayıcı[/a], Telif Hakkı 2002 Upright Database Technology. Tüm hakları " "saklıdır.[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Başlangıç" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Başlangıç sayfasını özelleştirir" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Sekmeler" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Sekmelerin nasıl çalışmasını istiyorsanız seçin" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Metin alanları" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Metin giriş alanlarını özelleştirir" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! metni" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "Uyarılar" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "phpMyAdmin tarafından gösterilen bazı uyarılar etkisiz" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3928,15 +3916,15 @@ msgstr "" "İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/Gzip]gzip" "[/a] sıkıştırma etkin" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Iconv için ilave parametreler" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3944,11 +3932,11 @@ msgstr "" "Eğer etkinleştirilirse, phpMyAdmin çoklu ifade sorgularını hesaplamaya devam " "eder, eğer sorgulardan biri başarısız olsa bile" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Çoklu ifade hatalarını yoksay" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3958,21 +3946,21 @@ msgstr "" "kesmeye izin verir. Bu büyük dosyaları içe aktarmak için iyi bir yol " "olabilir, ancak bu işlemleri bozabilir." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Kısmi içe aktarma: yarıda kesmeye izin ver" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "EKLEME hatasında durdurma" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Tablo verisini dosya ile değiştir" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -3980,88 +3968,88 @@ msgstr "" "Varsayılan biçim; bu liste yerine göre (veritabanı, tablo) değişir ve sadece " "her zaman SQL vardır" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "İçe aktarılmış dosyanın biçimi" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "YEREL anahtar kelime kullan" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "İlk satır içindeki sütun adları" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Boş satırları içe aktarma" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "Parasalları içe aktar ($5.00'ı 5.00'a)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Yüzdeleri doğru ondalık olarak içe aktar (%12.00'ı .12'ye)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "Başlangıçtan atlanacak sorgu sayısı" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Kısmi içe aktarma: sorguları atla" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Sıfır değerleri için AUTO_INCREMENT değeri kullanma" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "Kaydırıcılar için başlangıç durumu" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Bir defada kaç tane satır eklenebileceğidir" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Eklenmiş satır sayısı" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Hızlı erişim simgesi için hedef" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Logoyu sol çerçevede göster" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Logoyu görüntüle" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Sunucu seçimini sol çerçevenin en üstünde görüntüler" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Sunucu seçimlerini görüntüle" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "Tablo süzgeci kutusunu görüntülemek için en az tablo sayısıdır" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Veritabanlarını farklı ağaç seviyelerine ayıran dizgidir" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Veritabanı ağaç ayıracı" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4069,40 +4057,40 @@ msgstr "" "Sadece sade sürümde; veritabanları ağaç içinde görüntülenir (aşağıda " "tanımlanan ayıraçlar tarafından belirlenir)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Veritabanlarını ağaç içinde görüntüle" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" "Eğer tüm veritabanlarını bir kerede görmek isterseniz bunu etkisizleştirin" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Sade sürümü kullan" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "En fazla tablo ağacı derinliği" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Tabloları farklı ağaç seviyelerine ayıran dizgidir" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Tablo ağacı ayıracı" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "Rehber çerçevedeki logoyu işaret eden URL" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logo bağlantısı URL'si" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4110,47 +4098,47 @@ msgstr "" "Bağlantılı sayfayı ana pencerede ([kbd]main[/kbd]) veya yeni bir tanede " "([kbd]new[/kbd]) açar" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logo bağlantısı hedefi" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Fare imleci altında sunucuyu vurgula" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Vurgulamalar etkin" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" "En fazla son kullanılan tablo sayısıdır; etkisizleştirmek için 0'a ayarlayın" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "Son kullanılan tablolar" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Az grafiksel yoğunlukta sekmeler kullanılır" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Sade sekmeler" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "Gözat görünümünde herhangi bir sayısal olmayan sütunda gösterilen en fazla " "karakter sayısıdır" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "Sütun karakterlerini sınırlandır" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4161,11 +4149,11 @@ msgstr "" "bilgisini siler. Bunu FALSE'a ayarlamak çoklu sunuculara bağlandığınızda " "diğer sunuculardan oturumu kapatmayı unutmanızı kolaylaştırır." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Oturum kapatmada tüm tanımlama bilgilerini sil" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4173,11 +4161,11 @@ msgstr "" "Tanımlama bilgisi kimlik doğrulaması kipinde önceki açılan oturumun " "hatırlanıp hatırlanmayacağını tanımlar" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Kullanıcı adını hatırla" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4189,56 +4177,56 @@ msgstr "" "için tutulacağıdır, ve tarayıcı penceresini kapatır kapatmaz silinecektir. " "Bu güvenli olmayan ortamlar için önerilir." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Oturum açma tanımlama bilgisi depolama" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" "Oturum açma tanımlama bilgisinin ne kadar (saniye cinsinden) geçerli " "olacağını tanımlar" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "Oturum açma tanımlama bilgisi geçerliliği" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "LONGTEXT sütunları için metin alanın iki katı boyutu" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEXT için en büyük metin alanı" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "Ana sayfada simgeleri kullan" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "SQL sorgusu görüntülendiğinde kullanılan en fazla karakter sayısıdır" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "En fazla görüntülenecek SQL uzunluğu" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Kullanıcılar yüksek değer ayarlayamazlar" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Sol çerçevede ve veritabanı listesinde görüntülenecek olan en fazla " "veritabanı sayısıdır" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "En fazla veritabanı" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4248,19 +4236,19 @@ msgstr "" "daha fazla satır içeriyorsa, "Önceki" ve "Sonraki" " "bağlantıları gösterilecektir." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Görüntülemek için en fazla satır sayısı" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Tablo listesinde görüntülenecek olan en fazla tablo sayısıdır" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "En fazla tablo" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4268,11 +4256,11 @@ msgstr "" "Eğer tanımlama bilgisi kimlik doğrulaması için mcrypt eksikse, gösterilen " "varsayılan uyarıyı etkisizleştir" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt uyarısı" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4280,44 +4268,44 @@ msgstr "" "Betiğe ayrılması için izin verilecek bayt sayısıdır, örn. [kbd]32M[/kbd] " "(sınırsız için [kbd]0[/kbd])" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Bellek sınırı" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "Bunlar Düzenle, Kopyala ve Sil bağlantılarıdır" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "Tablo satır bağlantılarının nerede gösterileceği" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Tablo ve veritabanı adlarını sıralamak için doğal sıra kullan" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Doğal sıra" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Sadece simgeleri, sadece metni veya her ikisinide kullanır" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Sembolik rehber çubuğu" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "HTTP aktarımlarındaki arttırılmış hız için GZip çıktı arabellekleme kullanımı" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip çıktı arabellekleme" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4325,19 +4313,19 @@ msgstr "" "[kbd]SMART[/kbd] - örn. TIME, DATE, DATETIME ve TIMESTAMP türü sütunları " "için büyükten küçüğe sıralama, aksi halde küçükten büyüğe sıralama" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Varsayılan sıralama düzeni" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL veritabanlarına sürekli bağlantı kullanımı" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Sürekli bağlantılar" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4347,23 +4335,23 @@ msgstr "" "biri bulunamazsa, veritabanı ayrıntıları Yapı sayfasında gösterilen " "varsayılan uyarıyı etkisizleştir" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Eksik phpMyAdmin yapılandırma depolama tabloları" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Sembolik tablo işlemleri" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB ve BINARY sütunlarını düzenlemeye izin vermez" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Binari sütunlarını koru" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4373,121 +4361,121 @@ msgstr "" "Eğer etkisizleştirilirse, sorgu geçmişini görüntülemek için bu JS-" "programlarından yararlanır (pencere kapatıldığında bilgi kaybolur)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Kalıcı sorgu geçmişi" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Geçmişte ne kadar sorgu tutulacağıdır" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Sorgu geçmişi uzunluğu" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Yeni bir sorgu penceresi açıldığında görüntülenen sekme" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Varsayılan sorgu penceresi sekmesi" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Sorgu penceresi yüksekliği (piksel olarak)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Sorgu penceresi yüksekliği" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Sorgu penceresi genişliği (piksel olarak)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Sorgu penceresi genişliği" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Karakter grubu dönüştürme için kullanılacak olan işlevleri seçin" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Kaydetme motoru" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "Tablolara gözatılırken her tablonun sıralaması hatırlanır" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Tablonun sıralamasını hatırla" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Her X hücrede başlığı tekrarla, [kbd]0[/kbd] bu özelliği devre dışı bırakır" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Başlıkları tekrarla" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Belge metni yerine yardım düğmesi göster" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Yardım düğmesi göster" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "Bir defada tüm düzenlenen hücreleri kaydet" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Dışa aktarmaların sunucu üzerinde kaydedilebileceği dizin" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Kayıt dizini" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Eğer kullanılmayacaksa boş bırakın" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "Anamakine izin düzeni" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Varsayılan için boş bırakın" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "Anamakine izin kuralları" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Parolasız oturum açmaya izin ver" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Root oturumu açmaya izin ver" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "HTTP Kimlik Denetimi yaparken görüntülemek için Temel Kimlik Denetim alan adı" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP Alanı" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4497,19 +4485,19 @@ msgstr "" "yapılandırma dosyası yolu (belge kök klasörünüzde yer almaz; önerilen: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey yapılandırma dosyası" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Kullanmak için kimlik doğrulama yöntemi" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Kimlik doğrulama türü" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4517,11 +4505,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]Yer imi[/a] desteği istenmiyorsa " "boş bırakın, varsayılan: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Yer imi tablosu" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4529,33 +4517,33 @@ msgstr "" "Sütun yorumları/mime türleri istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Sütun bilgisi tablosu" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "MySQL sunucusu bağlantısını sıkıştırır" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Bağlantıyı sıkıştır" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Sunucuya nasıl bağlanılacağıdır, eğer emin değilseniz [kbd]tcp[/kbd] olarak " "bırakın" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Bağlantı türü" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Denetim kullanıcısı parolası" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4563,19 +4551,19 @@ msgstr "" "Sınırlı izinlerle yapılandırılmış özel MySQL kullanıcısıdır, daha fazla " "bilgi [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]'de mevcuttur" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Denetim kullanıcısı" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Veritabanı listesini gösterirken tabloları sayar" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Tabloları say" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4583,11 +4571,11 @@ msgstr "" "Tasarımcı desteği istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Tasarımcı tablosu" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4595,29 +4583,29 @@ msgstr "" "[a@http://sf.net/support/tracker.php?aid=1849494]PMA hata izleyici[/a] ve " "[a@http://bugs.mysql.com/19588]MySQL Hataları[/a] üzerine daha fazla bilgi" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA kullanımı etkisiz" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Kullanmak için hangi PHP uzantısı; Eğer destekleniyorsa mysqli " "kullanmalısınız" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Kullanmak için PHP uzantısı" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "Düzenli anlatıma (PCRE) uyan veritabanlarını gizler" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Veritabanlarını gizle" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4625,23 +4613,23 @@ msgstr "" "SQL sorgu geçmişi desteği istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL sorgu geçmişi tablosu" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "MySQL sunucusunun çalıştığı anamakine" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Sunucu anamakine adı" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Oturum kapatma URL'si" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" @@ -4650,19 +4638,19 @@ msgstr "" "yeni kayıtları tutuğumuzdan ve otomatik olarak eski kayıtları sildiğimizden " "emin olur" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "En fazla kayıt sayısı \"table_uiprefs\" tablosuna kaydedildi" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Parolasız bağlanmayı dener" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Parolasız bağlan" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4677,30 +4665,30 @@ msgstr "" "girin ve geri kalanını alfabetik sırada göstermek için sonunda [kbd]*[/kbd] " "kullanın." -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Sadece listelenmiş veritabanları göster" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "Eğer yapılandırma kimlik denetimi kullanılmıyorsa boş bırakın" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "Yapılandırma kimlik den. için parola" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "PDF şeması desteği istenmiyorsa boş bırakın, varsayılan: [kbd]pma_pdf_pages[/" "kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF şeması: sayfalar tablosu" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4710,21 +4698,21 @@ msgstr "" "bilgi için [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]'ye bakın. " "Destek istenmiyorsa boş bırakın. Önerilen: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Veritabanı adı" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "MySQL sunucusunun dinlemede olduğu bağlantı noktası, varsayılan ayar için " "boş bırakın" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Sunucu bağ.noktası" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -4732,11 +4720,11 @@ msgstr "" "Oturum geçişlerinde \"sürekli\" son kullanılan tablolar olmaması için boş " "bırakın, önerilen: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "Son kullanılan tablo" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4744,19 +4732,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]İlişki bağlantıları[/a] desteği " "istenmiyorsa boş bırakın, varsayılan: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Bağlantı tablosu" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "Mevcut veritabanları getirmek için SQL komutu" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES komutu" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4764,43 +4752,43 @@ msgstr "" "Örnek için [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]kimlik " "doğrulama türlerine[/a] bakın" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Oturumu açma oturum adı" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Oturumu açma URL'si" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "MySQL sunucusunun dinlemede olduğu soket, varsayılan ayar için boş bırakın" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Sunucu soketi" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "MySQL sunucusuna bağlantı için SSL etkin" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "SSL kullan" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "PDF şeması desteği istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF şeması: tablo koordinatları" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4808,11 +4796,11 @@ msgstr "" "Görüntü sütunlarını tanımlayan tablodur, destek istenmiyorsa boş bırakın; " "önerilen: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Görüntü sütunları tablosu" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -4820,11 +4808,11 @@ msgstr "" "Oturum geçişlerinde \"sürekli\" tabloların KA tercihleri olmaması için boş " "bırakın, önerilen: [kbd]pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "KA tercihleri tablosu" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4832,11 +4820,11 @@ msgstr "" "Veritabanı oluşturulduğunda günlüğe ilk satır olarak DROP DATABASE IF EXISTS " "ifadesi eklenecek." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "DROP DATABASE ifadesi ekle" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4844,11 +4832,11 @@ msgstr "" "Tablo oluşturulduğunda günlüğe ilk satır olarak DROP TABLE IF EXISTS ifadesi " "eklenecek." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "DROP TABLE ifadesi ekle" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4856,20 +4844,20 @@ msgstr "" "Görünüm oluşturulduğunda günlüğe ilk satır olarak DROP VIEW IF EXISTS " "ifadesi eklenecek." -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "DROP VIEW ifadesi ekle" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Yeni sürümler için otomatik oluşturma kullanan ifade listesini tanımlar." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "İfadelerden izlere" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4877,11 +4865,11 @@ msgstr "" "SQL sorgu izleme desteği istenmiyorsa boş bırakın, önerilen: [kbd]" "pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "SQL sorgu izleme tablosu" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4889,11 +4877,11 @@ msgstr "" "İzleme mekanizması tablolar ve görünümler için otomatik olarak sürümler " "oluşturur." -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "Otomatik olarak sürümleri oluştur" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" @@ -4901,15 +4889,15 @@ msgstr "" "Veritabanında kullanıcı tercihleri depolaması olmaması için boş bırakın, " "önerilen: [kbd]pma_userconfig[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "Kullanıcı tercihleri depolama tablosu" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "Yapılandırma kimlik den. için kullanıcı" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4917,11 +4905,11 @@ msgstr "" "Eğer pma_* tablolarınızın güncel olduğunu biliyorsanız etkisizleştirin. Bu " "uyumluluk kontrollerini önler ve dolayısıyla performansı arttırır" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Fazla bilgi denetimi" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4929,21 +4917,21 @@ msgstr "" "Bu sunucunun kolay kullanım açıklaması. Anamakine adını görüntülemek için " "boş bırakın." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Bu sunucunun fazladan adı" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Kullanıcının "tümünü (satırları) göster" düğmesini görüntüleyip " "görüntüleyemeyeceğidir" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Tüm satırları görüntülemeye izin ver" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4953,15 +4941,15 @@ msgstr "" "yapılandırmasını[/kbd] etkilemez çünkü parola yapılandırma dosyasında sıkı " "kodlanmıştır; bu, doğrudan aynı komutun yürütme kabiliyetini sınırlandırmaz" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Parola değiştirme formunu göster" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Veritabanı oluşturma formu göster" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" @@ -4969,11 +4957,11 @@ msgstr "" "Tabloya gözatılırken görüntüleme talimatı seçeneği doldurulsada " "doldurulmasada gösterilmesini tanımlar" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "Görüntüleme talimatını göster" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4981,27 +4969,27 @@ msgstr "" "Düzenle/ekle kipinde alanlar doldurulsada doldurulmasada ilk olarak " "gösterilmesini tanımlar" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "Alan türlerini göster" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "İşlev alanlarını düzenle/ekle kipinde görüntüler" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "İşlev alanlarını göster" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "İpucu gösterilip gösterilmeyeceği" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 msgid "Show hint" msgstr "İpucu göster" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5009,35 +4997,35 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] çıktısı için " "bağlantı gösterir" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "phpinfo() bağlantısını göster" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "Ayrıntılı MySQL sunucu bilgisini göster" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "phpMyAdmin tarafından oluşturulan SQL sorgularının görüntülenip " "görüntülenmeyeceğini tanımlar" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "SQL sorgularını göster" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Veritabanı ve tablo istatistiklerini görüntülemek için izin verir (örn. alan " "kullanımı)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "İstatistikleri göster" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5045,11 +5033,11 @@ msgstr "" "Eğer araç ipuçları etkinse ve veritabanı yorumu ayarlıysa bu, yorumu ve " "gerçek adı çevirecek" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Veritabanının adı yerine yorumunu görüntüle" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5061,30 +5049,30 @@ msgstr "" "içe koymak için kulanılır, bu yüzden sadece klasör, kod adı gibi çağrılır, " "tablo adının kendi değişmeden kalır" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Tablonun adı yerine yorumunu görüntüle" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Araç ipuçlarında tablo yorumlarını görüntüle" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Kullanılan tabloları işaretleyin ve veritabanlarını kilitli tablolarla " "birlikte gösterilmesini mümkün yapın" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Kilitli tabloları atla" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5094,7 +5082,7 @@ msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir" msgid "Password" msgstr "Parola" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -5102,11 +5090,11 @@ msgstr "" "[strong]Uyarı:[/strong] PHP SOAP uzantısı ya da PEAR SOAP kurulu olması " "gerekir" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "SQL Onaylayıcı etkin" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -5114,12 +5102,12 @@ msgstr "" "Eğer özel kullanıcı adınız varsa, onu burada belirleyin (varsayılanı [kbd]" "isimsiz'dir[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Kullanıcı Adı" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5127,19 +5115,19 @@ msgstr "" ""Veritabanı Oluşturma" formunda veritabanı önerir (eğer mümkünse) " "veya metin alanını boş tutar" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Yeni veritabanı adı öner" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Eğer Suhosin algılanırsa, ana sayfada uyarı gösterilir" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin uyarısı" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5147,11 +5135,11 @@ msgstr "" "Düzenle kipinde metin alanı boyutu (sütunlar), bu değer SQL sorgu metni " "alanları (*2) ve sorgu penceresi (*1.25) için önemi belirtecektir" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "Metin alanı sütunları" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5159,31 +5147,31 @@ msgstr "" "Düzenle kipinde metin alanı boyutu (satırlar), bu değer SQL sorgu metni " "alanları (*2) ve sorgu penceresi (*1.25) için önemi belirtecektir" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "Metin alanı satırları" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "Veritabanı seçildiğinde tarayıcı penceresi başlığı" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "Hiçbir şey seçilmediğinde tarayıcı penceresi başlığı" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Varsayılan başlık" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "Sunucu seçildiğinde tarayıcı penceresi başlığı" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "Tablo seçildiğinde tarayıcı penceresi başlığı" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5195,27 +5183,27 @@ msgstr "" "Forwarded-For) başlığına güvenmesini belirler:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "IP İzin Verme/Reddetme için güvenilir proksi listesi" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "İçe aktarmak için dosyaları gönderebileceğiniz sunucu üzerindeki dizin" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Gönderme dizini" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "Tüm veritabanı içinde aramaya izin verir" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Veritabanı aramayı kullan" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -5223,11 +5211,11 @@ msgstr "" "Etkisizleştirildiğinde kullanıcılar sağdaki işaret kutusunu dikkate almadan " "herhangi bir seçeneği ayarlayamazlar" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "Ayarlarda Geliştirici sekmesi etkin" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5236,19 +5224,19 @@ msgstr "" "Çoklu ifade sorgularında etkilenmiş her ifade sırasını gösterir. İfadenin ne " "kadar sorgu içerebileceği varsayılanı için libraries/import.lib.php'ye bakın." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Çoklu ifadeler için fazla bilgi" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Son sürümü kontrol et" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Ana phpMyAdmin sayfasında son sürümü kontrol etmeyi etkinleştir" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5256,7 +5244,7 @@ msgstr "Ana phpMyAdmin sayfasında son sürümü kontrol etmeyi etkinleştir" msgid "Version check" msgstr "Sürüm kontrolü" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5264,7 +5252,7 @@ msgstr "" "İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a] sıkıştırma etkin" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5284,47 +5272,47 @@ msgstr "HTTP kimlik doğrulaması" msgid "Signon authentication" msgstr "Oturumu açma kimlik doğrulaması" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "VERİ YÜKLE kullanarak CSV" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Açık Kaynaklı Tablolama Belgesi" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "Hızlı" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "Özel" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Veritabanı dışa aktarma seçenekleri" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS Excel için CSV" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "Açık Belge Metni" @@ -5500,9 +5488,8 @@ msgstr "Tablo oluştur" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Adı" @@ -5845,7 +5832,7 @@ msgid "Hide" msgstr "Gizle" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Tarayıcı dönüşümü" @@ -6785,7 +6772,7 @@ msgstr "CSV girişinde %d. satırda geçersiz sütun sayısı." msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Tablo adı" @@ -7473,7 +7460,7 @@ msgstr "Parametreler" msgid "Direction" msgstr "Yön" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Uzunluk/Değerler" @@ -7730,7 +7717,7 @@ msgstr "İçerik tablosu" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Öznitelikler" @@ -8026,7 +8013,7 @@ msgstr "Tablo boş olarak görünüyor!" msgid "Tracking of %s.%s is activated." msgstr "%s.%s izleme aktif." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8038,7 +8025,7 @@ msgstr "" "çizgi (\"\\\") veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters " "eğik çizgi koyun (örneğin '\\\\xyz' veya 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8046,13 +8033,13 @@ msgstr "" "Varsayılan değerler için lütfen sola eğik çizgisiz veya alıntısız sadece tek " "değer girin, bu biçimi kullanarak: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "İndeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8061,11 +8048,11 @@ msgstr "" "Mevcut dönüşüm seçeneklerinin listesi ve bunların MIME türü dönüşümleri için " "%sdönüşüm tanımlamarı%s'na tıklayın" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Dönüşüm seçenekleri" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8077,34 +8064,34 @@ msgstr "" "veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters eğik çizgi koyun " "(örneğin '\\\\xyz' veya 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "ENUM ya da SET verisi çok mu uzun?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "Daha fazla düzenleme alanı alın" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "Yok" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Tanımlandığı gibi:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Birincil" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Tam metin" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8113,25 +8100,25 @@ msgstr "" "Bu dönüşüm için mevcut açıklama yok.
Lütfen yazara %s ne yapar diye " "sorun." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "%s sütun ekle" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "En az bir sütun eklemek zorundasınız." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Depolama Motoru" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "PARTITION tanımı" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ Bir değer ekle" @@ -13081,6 +13068,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0'a ayarlı" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]yatay[/kbd], [kbd]dikey[/kbd] veya hangi dikey modelin kullanılması " +#~ "için en fazla sayıyı gösteren numara" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "Sütunları değiştirmek/oluşturmak için talimatı göster" + #~ msgid "Create table on database %s" #~ msgstr "%s veritabanında yeni tablo oluştur" diff --git a/po/tt.po b/po/tt.po index 329b8b6d97..883def858b 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" @@ -66,7 +66,7 @@ msgstr "Ezläw" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -128,7 +128,7 @@ msgid "Database comment: " msgstr "Biremlek açıqlaması:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Tüşämä açıqlaması" @@ -138,7 +138,7 @@ msgstr "Tüşämä açıqlaması" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "Alan iseme" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "Töre" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "Buş" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Töpcay" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "Bonı belän bäyläneş:" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Açıqlama" @@ -316,14 +316,14 @@ msgstr "Eçtälegen genä" msgid "CREATE DATABASE before copying" msgstr "Kübäytü aldınnan CREATE DATABASE östise" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "%s östäw" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" @@ -338,8 +338,8 @@ msgstr "Kübäytelgän biremlekkä küçäse" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -365,7 +365,7 @@ msgid "Edit or export relational schema" msgstr "Bäyläneşlär sxeme" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -688,7 +688,7 @@ msgid "Check tables having overhead" msgstr "Check overheaded" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -756,7 +756,7 @@ msgstr "Eçtälek Süzlege" msgid "Tracked tables" msgstr "Tüşämä tikşerü" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -838,12 +838,12 @@ msgstr "Tüşämä tikşerü" msgid "Database Log" msgstr "Biremlek" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1184,7 +1184,7 @@ msgstr "Bu xoquqlarnı yöklä" msgid "Removing Selected Users" msgstr "Saylanğan qullanuçı beterü" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1192,7 +1192,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Tözätü" @@ -1435,7 +1435,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1659,7 +1659,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1708,7 +1708,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1865,7 +1865,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2439,7 +2439,7 @@ msgstr "Açqıç bilgelänmäde!" msgid "Indexes" msgstr "Tezeşlär" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2476,7 +2476,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2785,18 +2785,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Tüşämä" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2876,7 +2876,7 @@ msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2948,7 +2948,7 @@ msgstr "MySQL qaytarışı:" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL Centekläw" @@ -2960,11 +2960,11 @@ msgstr "SQL Centeklämäskä" msgid "Without PHP Code" msgstr "PHP Kodısız" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP-Kod yasa" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Yañart" @@ -2973,7 +2973,7 @@ msgstr "Yañart" msgid "Skip Validate SQL" msgstr "SQL Tikşermäskä" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL'nı Tikşer" @@ -3087,20 +3087,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Tözeleş" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3312,7 +3312,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3462,139 +3462,129 @@ msgid "Default display direction" msgstr "Biremlek saqlaw köyläneşe" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 #, fuzzy msgid "Default database tab" msgstr "Biremlekne bolay atap quy" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 #, fuzzy msgid "Default server tab" msgstr "Biremlekne bolay atap quy" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 #, fuzzy msgid "Default table tab" msgstr "Biremlekne bolay atap quy" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Tüşämä eşkärtü" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Kiläse yazma üzgärtü" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Mömkinleklär Kürsätü" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Biremgä saqlıysı" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 #, fuzzy msgid "Character set of the file" msgstr "Şul biremneñ bilgelämäse:" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Tözeleş" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Qısu" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3603,71 +3593,71 @@ msgstr "Qısu" msgid "Put columns names in the first row" msgstr "Berençe yulda alannarnıñ iseme çığarası" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Alan yaptıruçı bilge" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Alan uzdıru bilgese" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "NULL'nı almaştırası:" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Yul ara bilgese" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Yul ara bilgese" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel söreme" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 #, fuzzy msgid "Database name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 #, fuzzy msgid "Server name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 #, fuzzy msgid "Table name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3675,404 +3665,404 @@ msgstr "Birem adınıñ tözeleşe" msgid "Dump table" msgstr "%s tüşämä" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Tüşämä başlığın östise" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Tüşämä başlığı" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Tüşämä dawamınıñ başlığı" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Açqıç yazması" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-törläre" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Bäyläneşlär" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Çığaru ısulı" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Birem bar bulsa, östän yazdırası" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 #, fuzzy msgid "Remember file name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Tüşämä/alan isemnären kirequote eçenä salası" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL, kileşterü ısulı" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Yaratılu/Üzgärelü/Tikşerü çaqları" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Kötterep östise" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Yat tezeş tikşerüen sünderep" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "\"IGNORE\" belän kertäse" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Kilgän soraw külämeneñ öske küläme" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy msgid "Export type" msgstr "Çığaru ısulı" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Transaksi eçendä ütkärep" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 #, fuzzy msgid "Export time in UTC" msgstr "Çığaru ısulı" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy msgid "Customize default options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 #, fuzzy msgid "Export defaults" msgstr "Biremdän alu" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 #, fuzzy msgid "Customize default export options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Ürçet" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 #, fuzzy msgid "Import defaults" msgstr "Biremdän alu" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 #, fuzzy msgid "Databases display options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Serverlär" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 #, fuzzy msgid "Servers display options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 #, fuzzy msgid "Tables display options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Documentation" msgid "Open Document" msgstr "Qullanma" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Bitneñ sanı:" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 #, fuzzy msgid "Customize query window options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Documentation" msgid "Authentication" msgstr "Qullanma" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy msgid "Authentication settings" msgstr "Bäyläneşlär" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 #, fuzzy msgid "Customize export options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 #, fuzzy msgid "Customize import defaults" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 #, fuzzy msgid "SQL queries" msgstr "SQL-soraw" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 #, fuzzy msgid "SQL Query box" msgstr "SQL-soraw" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy msgid "SQL queries settings" msgstr "SQL-soraw" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-taríxı" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4080,294 +4070,294 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 #, fuzzy msgid "Startup" msgstr "Torış" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 #, fuzzy msgid "Tabs" msgstr "Tüşämä" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Bu mätennän" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy msgid "Customize text input fields" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Yöklänğan birem tözeleşe" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "LOCAL digän süz qullanıp" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Put fields names in the first row" msgid "Column names in first row" msgstr "Berençe yulda alannarnıñ iseme çığarası" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Baştan ütep kitäse yazma sanı" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 #, fuzzy msgid "Number of inserted rows" msgstr "Tezelgän yazma sanı bu." -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "The number of tables that are open." msgid "Minimum number of tables to display the table filter box" msgstr "Açıq toruçı tüşämä sanı." -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 #, fuzzy msgid "Database tree separator" msgstr "Birem adınıñ tözeleşe" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 #, fuzzy msgid "Use light version" msgstr "MySQL belän totaştırğıç söreme" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy msgid "Recently used tables" msgstr "Tüşämä tikşerü" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4375,457 +4365,457 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 #, fuzzy msgid "Maximum databases" msgstr "Biremleklär yuq" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" msgstr "Resurs çikläwläre" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Tüşämä eçtälegen bolay tezäse" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Tüşämä adın üzgärtü" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Tözätü cebe" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" msgstr "Biremnär törgäge" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" msgstr "Totaşular" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" msgstr "Berär genä dä tüşämä yuq" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 #, fuzzy msgid "Designer table" msgstr "Tüşämä kisäklären berläşterü" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 #, fuzzy msgid "PHP extension to use" msgstr "PHP Söreme" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" msgstr "Biremleklär yuq" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" msgstr "server adı" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4834,347 +4824,347 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "biremlek adı" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 #, fuzzy msgid "Server port" msgstr "Server ID'e" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Tüşämä centekläw" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 #, fuzzy msgid "Relation table" msgstr "Tüşämä tözätü" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 #, fuzzy msgid "Server socket" msgstr "Server Saylaw" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Buy Açıqlamasın Kürsätäse" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Tüşämä kisäklären berläşterü" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Cömlä" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Üzennän tözälü ısulı" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy msgid "Show display direction" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Açıq tüşämä tezmäse" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Sırlı kürsät" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 #, fuzzy msgid "Show SQL queries" msgstr "Tulı Sorawlar Kürsät" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Show statistics" msgstr "Kerem Nöfüse" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5182,29 +5172,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 #, fuzzy msgid "Skip locked tables" msgstr "Açıq tüşämä tezmäse" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5214,90 +5204,90 @@ msgstr "" msgid "Password" msgstr "Sersüz" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 #, fuzzy msgid "Username" msgstr "Atama:" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Add/Delete Field Columns" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy msgid "Default title" msgstr "Biremlekne bolay atap quy" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5305,57 +5295,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 #, fuzzy msgid "Upload directory" msgstr "Biremnär törgäge" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5363,13 +5353,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5389,47 +5379,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "LOAD DATA qullanıp CSV" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV bireme, MS Excel öçen" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5606,9 +5596,8 @@ msgstr "Yaña Bit yaratu" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Adı" @@ -5995,7 +5984,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Browser transformation" @@ -6901,7 +6890,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 #, fuzzy msgid "Table name" @@ -7602,7 +7591,7 @@ msgstr "" msgid "Direction" msgstr "Yasalışı" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Ozınlıq/Bäyä*" @@ -7895,7 +7884,7 @@ msgstr "Eçtälek isemlege" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Üzençälek" @@ -8207,7 +8196,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8224,7 +8213,7 @@ msgstr "" ">Bäyä eçenä kireawış (\"\\\") yä sıñarquote (\"'\") kertäse bulsa, anı " "kireawıştırası bula (ürnäk: '\\\\xyz' yä ki 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8232,13 +8221,13 @@ msgstr "" "Töpcay bäyäsen kertkändä, kireawışlar qullanmasqa, cäyä eçenä da salmasqa. " "Bolayraq kertäse: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Tezeş" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8247,11 +8236,11 @@ msgstr "" "For a list of available transformation options and their MIME-type " "transformations, click on %stransformation descriptions%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Transformation options" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8263,36 +8252,36 @@ msgstr "" "quote (\"'\") amongst those values, backslash it (for example '\\\\xyz' or 'a" "\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Buş" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Töp" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Tulımäten" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8301,28 +8290,28 @@ msgstr "" "No Description is available for this transformation.
Please ask the " "author, what %s does." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s alan östäw" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Kimendä berär alan kertäse." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Saqlaw Isulı" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy msgid "+ Add a value" msgstr "Yaña qullanuçı östäw" diff --git a/po/ug.po b/po/ug.po index 9bd91466c5..07d9d5844d 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" @@ -68,7 +68,7 @@ msgstr "ئىزدەش" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "ساندان ئىزاھاتى:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "جەدۋەل ئىزاھى" @@ -140,7 +140,7 @@ msgstr "جەدۋەل ئىزاھى" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -156,7 +156,7 @@ msgstr "سۆزلەم" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -168,7 +168,7 @@ msgstr "تۈرى" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -179,7 +179,7 @@ msgstr "بوش" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "ئەندىز" @@ -193,13 +193,13 @@ msgid "Links to" msgstr "ئۇلانما" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "ئىزاھلار" @@ -313,14 +313,14 @@ msgstr "ئۇچۇرنىلا" msgid "CREATE DATABASE before copying" msgstr "ئاندىنقى سانداننى كۆپەيتىپ ساندان قۇرۇش" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "قوشۇلغىنى %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قوشۇش" @@ -335,8 +335,8 @@ msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -359,7 +359,7 @@ msgid "Edit or export relational schema" msgstr "PDF تىزىىسىنى كۆرسىتىش" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -671,7 +671,7 @@ msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -735,7 +735,7 @@ msgstr "مەلۇمات لۇغىتى" msgid "Tracked tables" msgstr "ئىزلانغان جەدۋەل" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -810,12 +810,12 @@ msgstr "جەدۋەل ئىزلاش" msgid "Database Log" msgstr "ساندان خاتىرىسى" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1163,7 +1163,7 @@ msgstr "ھوقۇقسىز" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "" @@ -1171,7 +1171,7 @@ msgstr "" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "تەھىرلەش" @@ -1409,7 +1409,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1634,7 +1634,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1685,7 +1685,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1838,7 +1838,7 @@ msgstr "" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2371,7 +2371,7 @@ msgstr "index قىممىتى بەلگىلەنمىگەن!" msgid "Indexes" msgstr "تېزىسلار" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2409,7 +2409,7 @@ 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:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2715,18 +2715,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2800,7 +2800,7 @@ msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2872,7 +2872,7 @@ msgstr "MySQL جاۋابى:" msgid "Failed to connect to SQL validator!" msgstr "Failed to connect to SQL validator!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL ئىزاھى" @@ -2884,11 +2884,11 @@ msgstr "SQL ئىزاھىىدىن ئاتلاش" msgid "Without PHP Code" msgstr "PHP كودى يوق" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "يېڭلاش" @@ -2897,7 +2897,7 @@ msgstr "يېڭلاش" msgid "Skip Validate SQL" msgstr "SQL دەلىللەشتىن ئاتلاش" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL دەلىللەش" @@ -3013,20 +3013,20 @@ msgid "Click to toggle" msgstr "بىر چىكىپ تاللاڭ" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "تۈزۈلىشى" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3230,7 +3230,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3377,193 +3377,183 @@ msgid "Default display direction" msgstr "" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Table comments" msgid "Display errors" msgstr "جەدۋەل ئىزاھى" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "ھۆججەتنى باشقا ساقلاش" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "فورماتلاش" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "پىرىسلاش" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "مەزمۇن ئايرىش بەلگىسى" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "مەزمۇنئايلاندۇرۇش بەلگىسى" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "نى ئالماشتۇرۇش ئۈچۈنNULL " -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "خەت ئايرىش بەلگىسى" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel نۇسخىسى" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3572,387 +3562,387 @@ msgstr "" msgid "Dump table" msgstr "%s جەدۋەل" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "ئۆزئىچىگە ئالغان جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "داۋاملاشتۇرىدىغان جەدېۋەلنىڭ تىمىسى" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "ئاچقۇچلۇق ئېمزا" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIMEشەكلى" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "مۇناسىۋىتى" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export" msgid "Export method" msgstr "چىقىرىش" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "مەۋجۇت ھۆججەت ئۈستىدىن يېزىش" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQLئۆز ئىچىگە ئالغان شەكلى" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export" msgid "Export type" msgstr "چىقىرىش" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "ھاسىللاش" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "OpenOffice ھۆججىتى" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Authenticating..." msgid "Authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy #| msgid "Authenticating..." msgid "Authentication settings" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "Skip Validate SQL" msgid "SQL Validator" msgstr "SQL دەلىللەشتىن ئاتلاش" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3960,283 +3950,283 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 #, fuzzy #| msgid "Columns terminated by" msgid "Column names in first row" msgstr "خەت ئايرىش بەلگىسى" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Add AUTO_INCREMENT value" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT قوشۇش" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "ئىزلانمىغان جەدۋەللەر" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4244,438 +4234,438 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "ئەسلىگە كەلتۈرۈش يۇلى" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4684,331 +4674,331 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "ساندان ئىسمى" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "جەدۋەل تەھلىلى" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 msgid "Show display direction" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Indexes" msgid "Show hint" msgstr "تېزىسلار" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5016,28 +5006,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5047,90 +5037,90 @@ msgstr "" msgid "Password" msgstr "پارول" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ئەندىز" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5138,56 +5128,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5195,13 +5185,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5229,47 +5219,47 @@ msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." msgid "Signon authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "OpenOffice جەدىۋېلى" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS Excel دىكى CSVشەكلى" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "OpenOffice ھۆججىتى" @@ -5444,9 +5434,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "ئىسمى" @@ -5819,7 +5808,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "" @@ -6693,7 +6682,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7390,7 +7379,7 @@ msgstr "" msgid "Direction" msgstr "قۇرۇش" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "" @@ -7682,7 +7671,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "" @@ -7970,7 +7959,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7978,30 +7967,30 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8009,59 +7998,59 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "" diff --git a/po/uk.po b/po/uk.po index b1c6d65254..12b7ce9ea2 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-07-03 18:10+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" @@ -67,7 +67,7 @@ msgstr "Шукати" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -131,7 +131,7 @@ msgid "Database comment: " msgstr "Коментар бази даних: " #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Коментар до таблиці" @@ -141,7 +141,7 @@ msgstr "Коментар до таблиці" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -157,7 +157,7 @@ msgstr "Стовпчик" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -169,7 +169,7 @@ msgstr "Тип" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -180,7 +180,7 @@ msgstr "Нуль" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "По замовчуванню" @@ -194,13 +194,13 @@ msgid "Links to" msgstr "Лінки до" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Коментарі" @@ -314,14 +314,14 @@ msgstr "Лише дані" msgid "CREATE DATABASE before copying" msgstr "Перед копіюванням створити базу даних (CREATE DATABASE)" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "Додати %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "Додати AUTO_INCREMENT значення" @@ -336,8 +336,8 @@ msgstr "Перейти до скопійованої бази даних" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -358,7 +358,7 @@ msgid "Edit or export relational schema" msgstr "Редагувати або експортувати схему зв'язків" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -674,7 +674,7 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -738,7 +738,7 @@ msgstr "Словник даних" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -813,12 +813,12 @@ msgstr "" msgid "Database Log" msgstr "Журнал бази даних" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1147,7 +1147,7 @@ msgstr "Перезавантаження прав" msgid "Removing Selected Users" msgstr "Видалити відмічених користувачів" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Закрити" @@ -1155,7 +1155,7 @@ msgstr "Закрити" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Редагувати" @@ -1393,7 +1393,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1620,7 +1620,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1669,7 +1669,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1806,7 +1806,7 @@ msgstr "Максимальний час виконання" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2325,7 +2325,7 @@ msgstr "Індекс не визначено!" msgid "Indexes" msgstr "Індекси" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2361,7 +2361,7 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2664,18 +2664,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Таблиць" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2749,7 +2749,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2821,7 +2821,7 @@ msgstr "Відповідь MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Тлумачити SQL" @@ -2833,11 +2833,11 @@ msgstr "Не тлумачити SQL" msgid "Without PHP Code" msgstr "без PHP коду" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "Створити PHP код" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Оновити" @@ -2846,7 +2846,7 @@ msgstr "Оновити" msgid "Skip Validate SQL" msgstr "Не перевіряти SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "Перевірити SQL" @@ -2958,20 +2958,20 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3170,7 +3170,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3317,563 +3317,553 @@ msgid "Default display direction" msgstr "Напрямок відображення по змовчуванню" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Обслговування таблиці" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "Показати помилки" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Максимальний час виконання" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Зберегти як файл" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Стискання" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "Помістити імена колонок в перший рядок" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "Колонки взято в" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "Колонки екрануються в" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "Замінити NULL на" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "Колонки завершуються з" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Рядки розділено" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "Дамп таблиці" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME-type" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Зв'язки" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "Метод експорту" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Зберегти на сервері" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Заміняти існуючі файли" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "Візьміть імена таблиці та колонки в зворотні лапки" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Використовувати вставки з затримкою" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "Тип експорту" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV дані" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "Розробник" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "Параметри для розробників phpMyAdmin" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Режим редагування" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "Загальний" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Імпорт / Експорт" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Сервери" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "Microsoft Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "Відкрити Документ" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Інші параметри ядра" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "Заголовки сторінки" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Вікно запиту" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Безпека" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "Аутентифікація" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "Параметри аутентифікації" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Конфігурація сервера" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "Налаштування SQL запитів" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL валідатор" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3881,279 +3871,279 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "Текстові поля" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "Налаштувати текстові поля вводу" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "Додаткові параметри для iconv" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " "transactions." msgstr "" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Замінити дані таблиці даними з файлу" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Імена колонок і першому рядку" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Не імпортувати пусті рядки" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Не використовувати AUTO_INCREMENT для нульових значень" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Analyze table" msgid "Recently used tables" msgstr "Аналіз таблиці" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4161,438 +4151,438 @@ msgid "" "recommended for non-trusted environments." msgstr "" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Ліміт пам'яті" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Звичайний порядок" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Висота вікна запиту" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Ширина вікна запиту (в пікселях)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Ширина вікна запиту" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Перейменувати таблицю в" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Дозволити авторизацію без паролю" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "Дозволити авторизацію для root" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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 "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4601,331 +4591,331 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "Ім'я бази даних" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Аналіз таблиці" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "Показувати колонки таблиці" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_userconfig[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "Напрямок відображення по змовчуванню" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Показати сітку" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4933,28 +4923,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -4964,86 +4954,86 @@ msgstr "" msgid "Password" msgstr "Пароль" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "Заголовок по замовчуванню" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5051,56 +5041,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5108,13 +5098,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5134,47 +5124,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Налаштування експорту бази даних" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "CSV для даних MS Excel" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5345,9 +5335,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Назва" @@ -5691,7 +5680,7 @@ msgid "Hide" msgstr "Приховати" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Перетворення МІМЕ-типу бровзером" @@ -6566,7 +6555,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7266,7 +7255,7 @@ msgstr "" msgid "Direction" msgstr "Створено" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Довжини/Значення*" @@ -7560,7 +7549,7 @@ msgstr "Зміст" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Атрибути" @@ -7871,7 +7860,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7883,7 +7872,7 @@ msgstr "" "\") або поодинокі лапки (\"'\") посеред цих значень, поставте перед ними " "зворотню косу риску (наприклад, '\\\\xyz' чи 'a\\'b')." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -7891,13 +7880,13 @@ msgstr "" "Для значень за замовчуванням, введіть лише значення, без використання " "зворотніх слешів чи лапок, у такому форматі: a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Індекс" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -7906,11 +7895,11 @@ msgstr "" "Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %" "sописи перетворень%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Опції перетворення" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -7922,36 +7911,36 @@ msgstr "" "цих значеннях, поставте перед ними додатковий зворотній слеш (наприклад '\\" "\\xyz' чи 'a\\'b')." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Немає" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Первинний" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "ПовнТекст" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -7960,27 +7949,27 @@ msgstr "" "Немає опису для цього перетворення.
Будь ласка запитайте автора, що " "робить %s." -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "Додати %s стовпчик(ів)" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Необхідно вибрати принаймі один Стовпчик для показу" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new User" msgid "+ Add a value" diff --git a/po/ur.po b/po/ur.po index a9e2f38648..5afb796552 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" @@ -68,7 +68,7 @@ msgstr "تلاش" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -133,7 +133,7 @@ msgid "Database comment: " msgstr "کوائفیہ تبصرہ:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "جدول تبصرے" @@ -143,7 +143,7 @@ msgstr "جدول تبصرے" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -161,7 +161,7 @@ msgstr "کالم" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -173,7 +173,7 @@ msgstr "قِسم" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -184,7 +184,7 @@ msgstr "خالی" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "طے شدہ" @@ -198,13 +198,13 @@ msgid "Links to" msgstr "ربط بطرف" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "تبصرہ" @@ -318,14 +318,14 @@ msgstr "کوائف صرف" msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE نقل سے قبل" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "اضافہ کریں %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قدر اضافہ کریں" @@ -340,8 +340,8 @@ msgstr "نقل شدہ کوائفیہ پر جائیں" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -362,7 +362,7 @@ msgid "Edit or export relational schema" msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -677,7 +677,7 @@ msgid "Check tables having overhead" msgstr "اوور ہیڈ جداول کی پڑتال کریں" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -743,7 +743,7 @@ msgstr "کوائف لغت" msgid "Tracked tables" msgstr "کھوج شدہ جداول" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -818,12 +818,12 @@ msgstr "جدول کھوج" msgid "Database Log" msgstr "کوائفیہ لاگ" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "کالم کی قدریں\"%s\"" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "ہر قدر جدا قطعہ میں داخل کریں۔" @@ -1171,7 +1171,7 @@ msgstr "استحقاق پھر لوڈ کرتے ہوئے" msgid "Removing Selected Users" msgstr "منتخب صارفین ہٹائے جارہے ہیں" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "بند کریں" @@ -1179,7 +1179,7 @@ msgstr "بند کریں" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "تدوین" @@ -1417,7 +1417,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1643,7 +1643,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1692,7 +1692,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1835,7 +1835,7 @@ msgstr "چلنے کی حد اوقات" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2363,7 +2363,7 @@ msgstr "کوئی اشاریہ موجود نہیں!" msgid "Indexes" msgstr "اشاریے" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2401,7 +2401,7 @@ msgstr "" "اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا " "جائے گا۔" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2709,18 +2709,18 @@ msgid "shared" msgstr "حصہ دارانہ" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "جداول" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2795,7 +2795,7 @@ msgstr "غلط سرور اشاریہ: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2867,7 +2867,7 @@ msgstr "MySQL نے کہا:" msgid "Failed to connect to SQL validator!" msgstr "SQL جواز دہندہ سے جڑت ناکام ہوا!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL کی تفصیل بتائیں" @@ -2879,11 +2879,11 @@ msgstr "SQL وضاحت کو چھوڑیں" msgid "Without PHP Code" msgstr "PHP کوڈ کے بغیر" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP کوڈ بنائیں" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "تازہ کریں" @@ -2892,7 +2892,7 @@ msgstr "تازہ کریں" msgid "Skip Validate SQL" msgstr "SQL توثیق چھوڑیں" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL کی توثیق کریں" @@ -3006,20 +3006,20 @@ msgid "Click to toggle" msgstr "انتخاب کے لیے کلک کریں" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "ساخت" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3218,7 +3218,7 @@ msgid "Set value: %s" msgstr "قدر سیٹ کریں: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "طے شدہ قدر بحال کریں" @@ -3380,305 +3380,293 @@ msgid "Default display direction" msgstr "طے شدہ دکھانے کی سمت" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] یا ایک ہندسہ جو عمودی ماڈل میں " -"استعمال کے لیے زیادہ سے زیادہ تعداد کو ظاہر کرتا ہے" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "کالم تبدیلی/بنانے کے لیے ہدایات دکھائیں" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "کوائفیہ میں داخل ہوتے ہوئے جو جدول دکھائی دے" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "طے شدہ کوائفیہ جدول" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "سرور میں داخل ہوتے ہوئے جو جدول دکھائی دے" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "طے شدہ سرور جدول" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "ایک جدول میں داخل ہوتے ہوئے جو جدول دکھائی دے" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "طے شدہ جدول کی جدول" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "ثنائی مشمولات کو بطور HEX طے شدہ دکھائیں" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "ثنائی مشمولات بطور HEX دکھائیں" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "کوائفیہ فہرست کو ڈراپ ڈاؤن کی بجائے لڑی میں دکھائیں" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "کوائفیے کو بطور لڑی دکھائیں" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "سرور فہرست کو ڈراپ ڈاؤن کی بجائے لڑی میں دکھائیں" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "سرور کو بطور لڑی دکھائیں" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "SQL طلب کو پاپ اپ دریچے میں تدوین کریں" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "دریچے میں تدوین کریں" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "نقائص دکھائیں" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "نقائص اکھٹی کریں" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "تنبیہ، نقص اور معلوماتی پیغامات کے لیے شبیہے دکھائیں" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "شبیہاتی نقائص" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "" "سکرپٹ کو چلنے کے لیے سیکنڈ میں تعداد بتائیں ([kbd]0[/kbd] بغیر حد کے لیے)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "چلنے کی حد اوقات" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "بطور مسل محفوظ کریں" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "مسل کے لیے حروف کی سیٹ" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "وضع" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "سکڑاؤ" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "کالم نام پہلے صف میں ڈالیں" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "کالم بند کیا گئے ہیں" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "کالم جداجدا ہیں" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "NULL کو ان سے بدلیں" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "کالم کے اندر CRLF حروف ہٹائیں" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "کالم کا خاتمہ" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "سطریں کے آخر میں" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel اشاعت" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "کوائفیہ نام سانچا" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "سرور نام سانچا" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "جدول نام سانچا" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "جدول ڈ٘مپ کریں" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "جدول عنوان شامل کریں" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "جدول عنوان" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "جاری شدہ جدول عنوان" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "سرنامہ کلید" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME قسم" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "تعلقات" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "برآمد طریقہ" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "سرور پہ محفوظ کریں" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "موجودہ مسل پر تحریر کریں" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "مسل نام سانچا یاد رکھیں" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "جدول اور کالم نام کو الٹے کوٹ سے بند کریں" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL موازنت موڈ" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "تاریخ اضافہ/ترمیم/پڑتال" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "تاخیر سے داخلے کا طریقہ استعمال کریں" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "فارن کلید پڑتال غیر فعال کریں" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "BLOB کے لیے شش اعشاری نظام استعمال کریں" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "نقل چھوڑیں داخلہ طریقہ استعمال کریں" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "کوائف داخل کرنے کا طریقہ کار" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "تخلیق شدہ طلب کی لمبائی کی حد" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "برآمد قسم" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "ایک ٹرانزیکشن میں برآمد بند کریں" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "برآمد وقت UTC میں" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "phpMyAdmin کو استعمال کرتے ہوئے محفوظ جڑت کے لیے کہیں" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "SSL جڑت کے لیے کہیں" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3686,148 +3674,148 @@ msgstr "" "فارن کلید ڈراپ ڈاؤن خانہ میں اشیاء کی ترتیب دیں; [kbd]content[/kbd] حوالہ " "شدہ کوائف ہے, [kbd]id[/kbd] کلید قدر ہے" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "فارن کلید ڈراپ ڈاؤن ترتیب" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "اگر کچھ اشیاء موجود ہوئے تو ایک ڈراپ ڈاؤن استعمال ہوگا" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "فارن کلید حد" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "برااؤز موڈ" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "برااؤز موڈ کی تخصیص کریں" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "طے شدہ اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "ڈویلپر" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "phpMyAdmin کے ڈویلپر کے لیے ترتیبات" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "تدوین موڈ" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "تدوین موڈ کی تخصیص کریں" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "طے شدہ برآمد کریں" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "طے شدہ برآمد اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "خصوصیات" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "عمومی" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "کچھ عام استعمال کے اختیارات مقرر کریں" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "طے شدہ درآمد" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "طے شدہ عام درآمد اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "درآمد / برآمد" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "درآمد اور برآمد کے لیے پوشے اور سکڑاؤ اختیارات مقرر کریں" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "کوائفیہ دکھانے کے اختیارات" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "گشت چوکھٹا" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "گشت چوکھٹا کی ظاہری شکل کی تخصیص کریں" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "سرور" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "سرور دکھانے کے اختیارات" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "جداول دکھانے کے اختیارات" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "مرکزی چوکھٹا" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "مائیکروسافٹ آفس" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "اوپن دستاویز" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "دیگر مرکزی ترتیبات" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "وہ ترتیبات جو کہیں موزوں نہیں ہوتے" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "صفحہ عنوانات" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3836,22 +3824,22 @@ msgstr "" "براؤزر عنوان بار متن لکھیں۔ حوالہ کے لیے[a@Documentation." "html#cfg_TitleTable]documentation[/a] خاص قدریں حاصل کرنے کے لیے میجک سٹرنگ۔" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "طلب دریچہ" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "طلب دریچہ اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "سلامتی" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -3859,23 +3847,23 @@ msgstr "" "یاد رکھیں کہ phpMyAdmin صرف ایک صارف مواجہ ہے اور اس کی خصوصیات MySQL پر اثر " "انداز نہیں ہوتیں" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "بنیادی ترتیبات" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "توثیق" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "توثیق ترتیبات" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "سرور کی تشکیل" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -3883,15 +3871,15 @@ msgstr "" "اعلی درجے کی سرور تشکیل، اس وقت تک ان اختیارات کو تبدیل نہ کریں جب تک آپ کو " "یہ معلوم نہ ہو کہ یہ کس لیے ہیں" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "سرور سے جڑنے کے لیے پیرا میٹر داخل کریں" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "تشکیل ذخیرہ" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3900,11 +3888,11 @@ msgstr "" "اضافی خواص تک رسائی کے لیے phpMyAdmin تشکیلات ذخیرہ کو تشکیل کریں، دیکھیں" "[a@Documentation.html#linked-tables]phpMyAdmin تشکیل ذخیرہ[/a] دستاویزات میں" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "تبدیلیوں کی کھوج" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." @@ -3912,44 +3900,44 @@ msgstr "" "تبدیلیوں کی کھوج کوائفیہ میں بنائی جاتی ہیں۔ اس کے لیے phpMyAdmin تشکیل " "ذخیرہ درکار ہوتا ہے۔" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "برآمد اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "درآمد کی طے شدہ تخصیص کریں" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "گشت چوکھٹے کی تخصیص کریں" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "مرکزی چوکھٹے کی تخصیص کریں" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL طلب" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL طلب خانہ" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "SQL طلب خانہ میں دکھائے گئے روابط کی تخصیص کریں" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL طلب ترتیبات" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL جواز دھندہ" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3961,43 +3949,43 @@ msgstr "" "[em][a@http://sqlvalidator.mimer.com/]Mimer SQL جواز دھندہ[/a], جملہ حقوق " "2002 Upright Database Technology. جملہ حقوق محفوظ ہیں۔[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "ابتدائیہ" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "ابتدائیہ صفحہ کی تخصیص کریں" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "جداول" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "جداول کے طریقہ کام چنیں" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "متن قطعے" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "متن ان پٹ قطعے تخصیص کریں" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! متن" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "تنبیہات" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "phpMyAdmin کے کچھ تنبیہات کو غیر فعال بنائیں" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4005,15 +3993,15 @@ msgstr "" "[a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] درآمد اور برآمد عملیات کے لیے " "سکڑاؤ فعال کریں" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "iconv کے لیے اضافی پیرا میٹر" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4021,11 +4009,11 @@ msgstr "" "فعال ہونے کی صورت میں phpMyAdmin کثیر بیانی طلب جاری رکھے گا یہاں کہ اگر " "کوئی طلب ناکام بھی ہوجائے تو دیگر چلتے رہیں گے" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "کثیر بیاناتی نقص نظر انداز کریں" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4034,21 +4022,21 @@ msgstr "" "اگر سکرپٹ چلنے کا وقت ختم ہو تو درآمد مداخلت کی اجازت دیں۔ اس سے بڑی مسلیں " "درآمد کرنے میں آسانی ہوگی بہرحال اس سے کاروائی رک سکتی ہے۔" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "جزوی درآمد: مداخلت کی اجازت دیں" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "INSERT نقص پر مت ساقط کریں" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "جدول کوائف کو مسل سے بدلیں" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4056,88 +4044,88 @@ msgstr "" "طے شدہ وضع; خبردار رہیں کہ فہرست اس محل وقوع پر انحصار کرتا ہے (کوائفیہ, " "جدول) اور صرفSQL ہر وقت دستیاب ہے" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "درآمد مسل کی وضع" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "LOCAL کلید الفاظ استعمال کریں" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "کالم نام پہلے صف میں ہوں" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "خالی صفیں درآمد مت کریں" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "سکہ درآمد کریں ($5.00 تا 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "فیصد کو مکمل ہندسہ کی صورت درآمد کریں (12.00% تا .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "ابتداء میں تعداد طلب جو چھوڑا جائے" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "جزوی درآمد: طلب چھوڑیں" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "صفر قدروں کے لیے AUTO_INCREMENT استعمال مت کریں" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "سلائیڈر کے لیے ابتدائی حالت" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "ایک وقت میں کتنے صفیں داخل کی جاسکتی ہیں" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "داخل شدہ صفوں کی تعداد" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "شبیہ تک سریع رسائی کے لیے ہدف" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "علامت دکھائیں" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "بائیں جھروکے کے بالا میں سرور اخیتار دکھائیں" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "سرور انتخاب دکھائیں" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "جدول فلٹر خانہ دکھانے کے لیے جداول کی کم سے کم تعداد" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "وہ لفظ جو کوائفیہ کو مختلف شجرہ سطحات میں سے جدا کررہا ہو" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "کوائفیہ شجرہ جدا کرنے والا" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4145,39 +4133,39 @@ msgstr "" "صرف ہلکے ورژن; کوائفیے شجرہ میں دکھائیں(نیچے بیان کیے گئے جدا کرنے والے لفظ " "سے متعین ہوتے ہیں)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "کوائفیے ایک شجرہ میں دکھائیں" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "اگر آپ ایک ہی دفعہ تمام کوائفیے دیکھنا چاہتے ہیں تو اسے غیر فعال کریں" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "ہلکا ورژن استعمال کریں" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "جدول شجرہ سطحات کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "وہ لفظ جو جداول کے شجرہ سطحات کو جدا کرتا ہے" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "جدول جدا کرنے والا لفظ" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "URL جہاں گشت جھروکہ میں علامت اشارہ کردے" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "علامت ربط URL" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4185,50 +4173,50 @@ msgstr "" "ربط شدہ صفحہ کو مرکزی دریچہ میں کھولیں ([kbd]main[/kbd]) یا ایک نئے میں " "([kbd]new[/kbd])" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "علامت ربط ہدف" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "ماؤس کرسر کے ساتھ سرور کو نمایا کریں" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "نمایاں کرنے کو فعال کریں" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "بغیر کھوج جداول" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "کم گرافی جداول استعمال کریں" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "ہلکے جداول" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "" "براؤز منظر میں ایک غیر ہندسی کالم میں زیاد سے زیادہ حروف کی تعداد جو دکھائی " "جائے" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "کالم حروف کی حد مقرر کریں" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4238,11 +4226,11 @@ msgstr "" "تو لاگ آؤٹ صرف حالیہ سرور کے لیے ہوگا۔ یہ مقرر کرنے سے FALSE یہ آسانی ہوجاتی " "ہے کہ جب کثیر سرور جڑے ہوئے ہوں تو ان سے لاگ آؤٹ ہونا مسئلہ نہیں ہوتا۔" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "لاگ آؤٹ پر تمام کوکی کو حذف کریں" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4250,11 +4238,11 @@ msgstr "" "کوکی توثیق موڈ میں پچھلے لاگ ان کو پھر سے فعال کرنے یا نہ کرنے کے بارے وضاحت " "کریں" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "صارف نام یاد کریں" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4265,55 +4253,55 @@ msgstr "" "ہے یہ صرف اسی دورانیہ کے لیے ہے اور براؤزر دریچہ بند ہوتے ہوتے ہی یہ حذف " "ہوجائے گا۔ یہ انجانے ماحول کے لیے موزوں ہے۔" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "لاگ ان کوکی ذخیرہ" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "سیکنڈ میں بتائیں کہ ایک لاگ ان کوکی کب تک موجود ہو" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "لاگ ان کوکی کب تک موجود ہو" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "LONGTEXT کالم کے لیے متنی خانہ دگنا سائز کریں" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "LONGTEXT کے لیے متنی خانہ بڑا کریں" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "مرکزی صفحہ پر شبیہے استعمال کریں" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "" "جب ایک SQL طلب دکھائی جائے تو زیادہ سے زیادہ حروف کی تعداد جو استعمال ہو" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "SQL کی زیادہ سے زیادہ لمبائی جو دکھائی جائے" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "صارفین اسے سے زیادہ قدر مقرر نہیں کرسکتے" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "کوائفیہ فہرست اور بائیں جھروکے میں کوائفیہ کی زیادہ سے زیادہ تعداد جو دکھائی " "جائے" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "زیادہ سے زیادہ کوائفیے" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4322,19 +4310,19 @@ msgstr "" "کسی نتیجہ کو دکھاتے ہوئے صفوں کی تعداد۔ اگر نتیجہ میں زیادہ صفیں موجود ہوں، " ""پچھلا" اور"اگلا" روابط دکھائے جائیں گے۔" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "دکھانے کے لیے صفوں کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "زیادہ سے زیادہ جداول" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" @@ -4342,11 +4330,11 @@ msgstr "" "اگر کوکی توثیق کے لیے mcrypt موجود نہ ہونے کی تنبیہ غیر فعال کرنے کے لیے طے " "شدہ تنبیہ کو غیرفعال کریں" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt تنبیہ" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4354,45 +4342,45 @@ msgstr "" "ایک سکرپٹ کو کو جگہ مختص کرنے کے لیے بائٹ کی تعداد لکھیں جیسا کہ [kbd]32M[/" "kbd] ([kbd]0[/kbd] بغیر حد کے)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "میموری حد" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links" msgstr "یہ تدوین، ان لائن تدوین، نقل اور حذف روابط ہیں" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "جدول اور کوائفیہ نام ترتیب کے لیے قدرتی انداز استعمال کریں" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "قدرتی ترتیب" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "صرف شبیہے، صرف متن یا دوتوں استعمال کریں" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "شبیہاتی گشت بار" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "HTTP منتقلی رفتار بڑھانے کے لیے GZip آؤٹ پٹ بفر استعمال کریں" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip آؤٹ پٹ بفر" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4400,19 +4388,19 @@ msgstr "" "[kbd]SMART[/kbd] - اس اقسام کی کالموں کے لیے نزولی ترتیب type TIME, DATE, " "DATETIME اور TIMESTAMP, بصورت دیگر صعودی ترتیب" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "طے شدہ چھانٹی ترتیب" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL کوائفیہ سے جڑنے کے لیے بہتر جڑت استعمال کریں" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "بہتر جوڑ" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -4421,23 +4409,23 @@ msgstr "" "اگر phpMyAdmin تشکیل ذخیرہ میں کوئی درکار جداول نہیں ملا جو کہ کوائفیہ " "تفصیلی ساکت صفحہ میں دکھایا جاتا ہے تو طے شدہ انتباہ کو غیر فعال کریں" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "شبیہاتی جدول عملیات" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB اور BINARY کالم تدوین کے لیے ممنوع کریں" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "ثنائی کالم کو ممنوع کریں" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4447,120 +4435,120 @@ msgstr "" "درکار ہوگی). غیرفعال کرنے کی صورت میں یہ جاوا سکرپٹ فنکشن کو استعمال کرتے " "ہوئے طلب لاگ دکھاتا ہے (دریچہ بند ہونے کی صورت میں ضائع ہوجاتی ہے)." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "مستقل طلب لاگ" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "لاگ میں کتنے طلب رکھے جانے چاہیں" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "طلب لاگ کی لمبائی" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "جب ایک نیا طلب دریچہ کھولا جائے گا تو جدول نظر آئے گی" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "طے شدہ طلب دریچہ جدول" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "طلب دریچہ اونچائی(پکسل میں)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "طلب دریچہ اونچائی" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "طلب دریچہ چوڑائی(پکسل میں)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "طلب دریچہ چوڑائی" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "حروف بدلنے کے لیے کونسے فنکش استعمال ہوں کی انتخاب کریں" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "ری کوڈ انجن" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "سرخی کو ہرX خانے کے لیے دہرائیں, [kbd]0[/kbd] اس خاصیت کو غیر فعال کرتا ہے" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "دہرانے کے لیے سرخیاں" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "مدد دستاویز متن کی جگہ بٹن دکھائیں" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "مدد بٹن دکھائیں" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "وہ پوشہ جس پر برآمد سرور میں محفوظ کیے جاسکیں" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "پوشہ محفوظ کریں" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "استعمال نہ ہونے کی صورت میں خالی چھوڑ دیں" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "ہوسٹ توثیق حکم" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "طے شدہ کے لیے خالی چھوڑ دیں" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "ہوسٹ توثیق قاعدے" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "پاس ورڈ کے بغیر لاگ ان کی اجازت دیں" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "منتظم لاگ ان کی اجازت دیں" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP بنیادی توثیق اختیار نام جو دکھائی جائے جب HTTP توثیق کررہا ہو" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP اختیار" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4569,19 +4557,19 @@ msgstr "" "تشکیل مسل کے لیے جگہ [a@http://swekey.com]SweKey ہاروئیر توثیق[/a] (آپ کے " "منتظم دستاویز میں موجود نہیں ہے; مجوزہ: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey تشکیل مسل" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "توثیق کا طریقہ جو استعمال ہو" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "توثیق قسم" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4589,42 +4577,42 @@ msgstr "" "نہیں کے لیے خالی چھوڑیں@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "معاونت، مجوزہd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "جدول نشان کریں" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" "کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "کالم معلومات جدول" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "جڑنے کو MySQL سرور کے لیے سکیڑیں" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "جڑنے کو سکیڑیں" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "سرور سے کیسے جڑا جائے, چھوڑ دیں [kbd]tcp[/kbd] اگر پتا نہیں" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "جڑنے کی قسم" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "صارف پاس ورڈ کنٹرول" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4632,19 +4620,19 @@ msgstr "" "ایک خاص MySQL صارف مقررہ اجازت نامہ کے ساتھ تشکیل دیا گیا ہے, مزید معلومات " "یہاں موجود ہیں[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "صارف کو کنٹرول کریں" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "جب کوائفیہ فہرست دکھا رہے ہوں تو جداول کی گنتی کریں" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "حداول کی گنتی کریں" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4652,11 +4640,11 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "ڈیزائنر جدول" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4664,71 +4652,71 @@ msgstr "" "مزید معلومات یہاں موجود ہے [a@http://sf.net/support/tracker.php?aid=1849494]" "PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL نقائص[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA کی استعمال کو غیر فعال کریں" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "PHP کو کونسی قسم استعمال کی جائے; آپ استعمال کریں mysqli اگر اس کی معاونت ہے" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "PHP کی قسم جو اسعتمال کی جائے" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "وہ کوائفیے چھپائیں جو ریگولر ایکسپریشن سے مطابقت رکھتے ہیں (PCRE)" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "کوائفیے چھپائیں" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" "SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL طلب لاگ جدول" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "جہاں MySQL سرور چل رہا ہے اس کا نام" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "سرور نام" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "لاگ آؤٹ URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "ایک جدول فہرست میں جداول دکھانے کی زیادہ سے زیادہ تعداد" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "پاس ورڈ کے بغیر جڑنے کی کوشش کریں" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "پاس ورڈ کے بغیر جڑیں" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4737,49 +4725,49 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "ڈیٹا بیس" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -4790,80 +4778,80 @@ msgid "" msgstr "" "کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "صارف نام یاد کریں" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -4875,69 +4863,69 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -4949,138 +4937,138 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "طے شدہ دکھانے کی سمت" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "گرِڈ دکھائیں" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5088,28 +5076,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5119,90 +5107,90 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ڈیفالٹ" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5210,56 +5198,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5267,13 +5255,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "" @@ -5293,47 +5281,47 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "" @@ -5506,9 +5494,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "" @@ -5854,7 +5841,7 @@ msgid "Hide" msgstr "" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "" @@ -6713,7 +6700,7 @@ msgstr "" msgid "DocSQL" msgstr "" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "" @@ -7413,7 +7400,7 @@ msgstr "" msgid "Direction" msgstr "بنائیں" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "" @@ -7704,7 +7691,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "" @@ -7994,7 +7981,7 @@ msgstr "" msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -8002,30 +7989,30 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8033,61 +8020,61 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "آپ کو کم از کم ایک کالم چننا ہو گا ڈسپے کیلئے۔" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "" @@ -12666,6 +12653,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] یا ایک ہندسہ جو عمودی ماڈل " +#~ "میں استعمال کے لیے زیادہ سے زیادہ تعداد کو ظاہر کرتا ہے" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "کالم تبدیلی/بنانے کے لیے ہدایات دکھائیں" + #, fuzzy #~ msgid "Data Label" #~ msgstr "کوائفیہ" diff --git a/po/uz.po b/po/uz.po index 34d4f90daf..3804af93e4 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" @@ -65,7 +65,7 @@ msgstr "Қидириш" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -129,7 +129,7 @@ msgid "Database comment: " msgstr "Маълумотлар базасига изоҳ:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Жадвал изоҳи" @@ -139,7 +139,7 @@ msgstr "Жадвал изоҳи" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -157,7 +157,7 @@ msgstr "Майдон номлари" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -169,7 +169,7 @@ msgstr "Тур" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -180,7 +180,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Андоза" @@ -194,13 +194,13 @@ msgid "Links to" msgstr "Алоқалар" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Изоҳлар" @@ -318,14 +318,14 @@ msgstr "Фақат маълумотлар" msgid "CREATE DATABASE before copying" msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" @@ -340,8 +340,8 @@ msgstr "Нусха олинган маълумотлар базасига ўти #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -367,7 +367,7 @@ msgid "Edit or export relational schema" msgstr "Алоқалар схемаси" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -694,7 +694,7 @@ msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -762,7 +762,7 @@ msgstr "Маълумотлар луғати" msgid "Tracked tables" msgstr "Кузатилган жадваллар" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -837,12 +837,12 @@ msgstr "Жадвални кузатиш" msgid "Database Log" msgstr "База лог файлини" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1205,7 +1205,7 @@ msgstr "Привилегиялар қайта юкланмоқда" msgid "Removing Selected Users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Ёпиш" @@ -1213,7 +1213,7 @@ msgstr "Ёпиш" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Таҳрирлаш" @@ -1461,7 +1461,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1690,7 +1690,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1741,7 +1741,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1906,7 +1906,7 @@ msgstr "Максимум бажарилиш вақти" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2500,7 +2500,7 @@ msgstr "Индекс белгиланмаган!" msgid "Indexes" msgstr "Индекслар" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2536,7 +2536,7 @@ msgid "" "removed." msgstr "%1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2857,18 +2857,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Жадваллар" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2954,7 +2954,7 @@ msgstr "" " %1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион " "файлида белгиланган созлашларни тўғирланг." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -3029,7 +3029,7 @@ msgstr "MySQL жавоби: " msgid "Failed to connect to SQL validator!" msgstr "MySQL-серверга уланиб бўлмади" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "Сўров таҳлили" @@ -3041,11 +3041,11 @@ msgstr "Таҳлил керак эмас" msgid "Without PHP Code" msgstr "PHP-код олиб ташлаш" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Янгилаш" @@ -3054,7 +3054,7 @@ msgstr "Янгилаш" msgid "Skip Validate SQL" msgstr "SQL синтаксиси текширувини олиб ташлаш" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL тўғрилигини текшириш" @@ -3174,20 +3174,20 @@ msgid "Click to toggle" msgstr "Танлаш учун сичқонча тугмасини босинг" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Тузилиши" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3400,7 +3400,7 @@ msgid "Set value: %s" msgstr "Қуйидаги қийматни ўрнатиш: \"%s\"" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Асл қийматларни тиклаш" @@ -3573,114 +3573,104 @@ msgid "Default display direction" msgstr "Маълумотлар базаларини кўрсатиш афзалликлари" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Маълумотлар базасига киришда кўрсатиладиган ёрлиқ" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Маълумотлар базаси ёрлиғи" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Серверга киришда кўрсатиладиган ёрлиқ" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Сервер ёрлиғи" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Жадвалга киришда кўрсатиладиган ёрлиқ" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Жадвал ёрлиғи" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" "Маълумотлар базаси рўйхатини пастга тушадиган меню ўрнига оддий рўйхат " "шаклида кўрсатиш" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Маълумотлар базасини рўйхат шаклида кўрсатиш" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" "Серверлар рўйхатини пастга тушадиган меню ўрнига оддий рўйхат шаклида " "кўрсатиш" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Серверлар рўйхатини кўрсатиш" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Жадвалга хизмат кўрсатиш" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Кейинги қаторни таҳрирлаш" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Имкониятларни кўрсатиш" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Хатоларга эътибор бермаслик" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Хатоларга эътибор бермаслик" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3688,32 +3678,32 @@ msgstr "" "Скрипт ишлаши мумкин бўлган секундлар сони (чегарамаслик учун [kbd]0[/kbd] " "киритинг)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Максимум бажарилиш вақти" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Файл каби сақлаш" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Файл кодировкаси" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Формат" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Сиқиш" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3722,70 +3712,70 @@ msgstr "Сиқиш" msgid "Put columns names in the first row" msgstr "Майдон номларини биринчи қаторга жойлаштириш" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Майдон қийматлари қуйидаги белги ичига олинган " -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Белги олдида қуйидаги белги мавжуд " -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "NULL қийматни қуйидагига алмаштириш" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Майдонлар ичидаги сатрдан-сатрга кўчириш белгиларини олиб ташлаш" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Қаторлар бўлувчиси" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Қаторлар бўлувчиси" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-версияси" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Маълумотлар базаси номи шаблони" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Сервер номи шаблони" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Жадвал номи шаблони" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3793,120 +3783,120 @@ msgstr "Жадвал номи шаблони" msgid "Dump table" msgstr "Жадваллар сони: \"%s\"" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Жадвалга сарлавҳа қўшиш" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Жадвал сарлавҳаси" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Жадвал сарлавҳаси (давоми)" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Белги идентификатори" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME тури" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Алоқалар" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Эскпорт тури" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Серверга сақлаш" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Мавжуд файл(лар) устидан ёзиш" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Файл номи шаблонини ёдда сақлаш" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Жадвал ва майдон номларини тескари қўштирноққа олиш" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL билан мослик режими" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Тузиш, янгилаш ва текшириш саналари" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Кечиктирилган қўйиш (DELAYED INSERTS) дан фойдаланиш" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Ташқи калитларни текширишни ўчириш" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "BLOB туридаги маълумотларни ўн олтилик шаклда намойиш этиш" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "Эътибор бермаслик (IGNORE) қўйилмалардан фойдаланиш" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Тузилаёган сўровнинг максимал узунлиги" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Жадвалларни экспорт қилиш" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Транзакцияга экспортни қўшиш" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Вақтни UTC шаклда экспорт қилиш" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "phpMyAdmin ишлатилганда хавфсиз (SSL) уланишга мажбур қилиш" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Хавфсиз (SSL) уланишга мажбур қилиш" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3914,178 +3904,178 @@ msgstr "" "Ташқи калит менюсининг тартиблаш усули: [kbd]content[/kbd] - мурожаат " "маълумотлари бўйича, [kbd]id[/kbd] - калит қийматлар бўйича" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Ташқи калит менюси тартиби" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Агар камроқ қиймат бўлса, пастга тушувчи меню ишлатилади" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Ташқи калит чегаралари" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Кўриб чиқиш усул" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Кўриб чиқиш усулини созлаш" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Экспорт афзалликларини созлаш" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Таҳрирлаш усули" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Таҳрирлаш усулини созлаш" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Экспорт" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Экспорт афзалликларини созлаш" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Функциялар" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Генерация қилиш" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Импорт" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Импорт афзалликларини созлаш" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Импорт/Экспорт" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Импорт ва экспорт каталоглари ва қисиш усулларини белгилаш" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Маълумотлар базаларини кўрсатиш афзалликлари" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Навигация панели" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Навигация панели кўринишини созлаш" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Серверлар" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Серверлар кўринишини созлаш" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Жадваллар кўринишини созлаш" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Асосий рамка" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "OpenDocument матн" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Бошқа созланишлар" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Бошқа жойга сиғмаган созланишлар" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Саҳифа рақами: " -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "Сўровлар ойнаси кўринишини созлаш" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Хавфсизлик" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -4093,27 +4083,27 @@ msgstr "" "Эсда тутинг, phpMyAdmin - бу фақатгина фойдаланувчи интерфейси бўлиб, унинг " "хусусиятлари MySQL-серверининг функцияларини чегараламайди" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Асосий созланишлар" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Аутентификация усули" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Аутентификация усули" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Сервер конфигурацияси" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -4121,17 +4111,17 @@ msgstr "" "Кенгайтирилган сервер конфигуарцияси, агар уларнинг маъносини аниқ " "билмасангиз, яхшиси, уларга тегманг." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Сервернинг уланиш параметрларини киритиш" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Конфигурацион файл" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -4147,58 +4137,58 @@ msgstr "" "Documentation.html#linked-tables]уланган жадваллар инфратузилмасини[/a] " "қараб чиқинг" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Экспорт танловларини мослаштириш" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Импорт танловларини мослаштириш" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Навигация панелини мослаштириш" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Асосий рамкани мослаштириш" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL сўровлари" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL сўровлари қутиси" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "SQL сўровлари қутисида кўрсатиладиган боғларни созлаш" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL сўровлари" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-сўровлар тарихи" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4206,49 +4196,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Бошланғич" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Бошланғич саҳифани созлаш" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Ёрлиқлар" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Ёрлиқлар қандай ишлашини танланг" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Матнмайдонини ишлатиш" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Экспорт танловларини мослаштириш" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! матн" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Огоҳлантириш" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4256,15 +4246,15 @@ msgstr "" "Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/Gzip]gzip" "[/a] ёрдамида сиқишни ёқиш" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "iconv учун қўшимча параметрлар" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4272,11 +4262,11 @@ msgstr "" "Агар ёқилган бўлса, phpMyAdmin, ҳатто сўровлардан бири барбод бўлганда ҳам, " "кўп қисмли сўровларни ҳисоблашни давом этади" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Кўп қисмли сўровлардаги хатоларга эътибор бермаслик" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4286,21 +4276,21 @@ msgstr "" "бериш. Бу катта файлларни юклаш учун яхши усул, лекин у транзакцияларни " "бузиши мумкин." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Қисман импорт: узишга рухсат бериш" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4308,99 +4298,99 @@ msgstr "" "Импорт файл формати; ёдда тутингки, ушбу рўйхат (маълумотлар базаси, жадвал) " "жойлашишига боғлиқ ва фақат SQL ишлайди" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Импорт қилинаётган файл формати" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "\"LOCAL\" калит сўзини ишлатиш" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Биринчи қаторга устун номлари" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Бўш қаторларни импорт қилмаслик" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Пул бирликларини импорт қилиш (масалан, $5.00 ни 5.00 га)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" "Фоизларни мос ўнли касрлар каби импорт қилиш (масалан, 12.00% ўрнига 0.12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "Файл бошидаги эътибор бериш керак бўлмаган қаторлар (сўровлар) сони" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Қисман импорт: сўровларга эътибор бермаслик" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Бир вақтнинг ўзиданечта қатор қўйилиши мумкин" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Қўйилган қаторлар сони" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Тезкор мурожаат пиктограммаси учун нишон" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Чап рамкада логотипни кўрсатиш" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Логотипни кўрсатиш" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Чап рамканинг юқори қисмида сервер танловини кўрсатиш" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Сервер танловини кўрсатиш" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of tables to display the table filter box" msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Маълумотлар базаларини дарахтнинг турли даражаларига бўлувчи сатр" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Маълумотлар базаси дарахтининг бўлувчиси" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4408,40 +4398,40 @@ msgstr "" "Енгил версия; маълумотлар базаларини дарахтда кўрсатиш (қуйида белгиланган " "сатр билан бўлинади)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Маълумотлар базаларини дарахтда кўрсатиш" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" "Агар барча маълумотлар базаларини кўрмоқчи бўлсангиз, ушбу танловни ўчиринг" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Енгил версиядан фойдаланиш" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Жадваллар дарахтининг максимум чуқурлиги" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Жадвалларни дарахтнинг турли даражаларига бўлувчи сатр" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Жадвал дарахтининг бўлувчиси" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Логотип боғланган URL" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4449,50 +4439,50 @@ msgstr "" "Боғланган саҳифани бош ойнада ([kbd]бош[/kbd]) ёки янги ойнада ([kbd]янги[/" "kbd]) очиш" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Логотип боғланган нишон" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Сичқонча курсори турган серверни белгилаш" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Белгилашни ёқиш" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Кузатилмаган жадваллар" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Камроқ графикали ёрлиқларни ишлатиш" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Енгил ёрлиқлар" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "SQL сўрови кўрсатилганда ишлатиладиган белгиларнинг максимал сони" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4503,11 +4493,11 @@ msgstr "" "чиқиш амалга оширилади. Агар бир нечта серверларга уланганбўлса, унда ЁЛҒОН " "(FALSE) танлови бошқа серверлардан чиқиш унитилишига олиб келиши мумкин." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Чиқишда барча \"cookies\"ларни ўчириш" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4515,11 +4505,11 @@ msgstr "" "cookie-аутентификация усулидан фойдаланилганда олдинги логин сессияси қайта " "чақирилиб олиниши керакми?" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Фойдаланувчи номини чақириб олиш" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4531,54 +4521,54 @@ msgstr "" "сақланади ва браузер ойнаси ёпилган заҳоти ўчирилади. Бу қиймат ишончсиз " "муҳитлар учун тавсия этилади." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Логин маълумотини cookie-да сақлаш" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "cookie-логин усули қанча вақт (секундларда) яроқли бўлишини белгиланг" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "cookie-логин яроқлиги" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "SQL сўрови кўрсатилганда ишлатиладиган белгиларнинг максимал сони" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "SQL сўровининг максимал узунлиги" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Чап рамкада ва базалар рўйхатида кўрсатиладиган маълумотлар базаларининг " "максимал сони" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Маълумотлар базаларининг максимал сони" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4587,29 +4577,29 @@ msgstr "" "Натижаларда кўрсатиладиган қаторлар сони. Агар натижалар қатори кўрсатилган " "қийматдан кўп бўлса, \"Олдинги\" ва \"Кейинги\" боғланишлар кўрсатилади." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Кўрсатиладиган қаторларнинг максимал сони" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Максимал жадваллар сони" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4617,47 +4607,47 @@ msgstr "" "Скрипт учун ажратиладиган байлардаги хотира миқдори, масалан [kbd]32M[/kbd] " "([kbd]0[/kbd] - чегараланмаган)." -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Хотира миқдори" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Жадвал сортировкасини ўзгартириш" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Фақат пиктограмма, фақат матн ёки ҳар иккисини ишлатиш" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Пиктограммали навигация менюси" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "HTTP орқали маълумот узатишда юқори тезликка эришиш учун GZip буферизациядан " "фойдаланинг" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip буферизация" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -4669,46 +4659,46 @@ msgstr "" "[kbd]SMART[/kbd] – яъни, TIME, DATE, DATETIME ва TIMESTAMP туридаги " "майдонлар учун камайиш тартибида, акс ҳолда кўпайиш тартибида" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Асл тартиблаш қоидаси" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL маълумотлар базаларида доимий уланишлардан фойдаланиш" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Доимий уланишлар" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Жадвал операцияларини пиктограммалар ёрдамида амалга ошириш" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB ва BINARY майдонларини таҳирлашни ман этиш" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Бинар (иккилик) майдонларни ҳимоялаш" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -4722,135 +4712,135 @@ msgstr "" "танловни ёқинг (pmadb талаб этилади). Ушбу танлов ўчирилган бўлса, ойна " "ёпилган заҳоти сўровлар тарихи йўқолади." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Доимий сўровлар тарихи" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Журналда сақланадиган сўровлар сони" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Сўровлар тарихи узунлиги" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Янги сўровлар ойнаси очилганда кўрсатиладиган ёрлиқ" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Сўровлар ойнасининг ёрлиғи" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Кодировкаларни бир-бирига ўтказишда фойдаланиладиган функцияларни танланг" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Кодировкалаш функцияси" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Жадвал номини ўзгартириш" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Оқимли тиклаш" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Сервердаги экспорт файллар сақланадиган директория" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Сақлаш директорияси" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Агар ишлатилмаса бўш қолдиринг" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Аутентификация тартиби" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Асл қоидаларни ишлатиш учун бўш қолдиринг" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Аутентификация қоидалари" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Паролсиз қиришга рухсат бериш" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "\"root\"га киришга рухсат бериш" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "HTTP Авторизация вақтида кўрсатиладиган Оддий HTTP Авторизация Бўлими номи" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP Бўлими" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4860,19 +4850,19 @@ msgstr "" "файл йўли (ҳужжатлар каталогига жойлаштирилмаган; тавсия этилади: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "\"SweKey\" конфигурация файли" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Фойдаланиладиган аутентификация усули" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Аутентификация усули" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4880,11 +4870,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]Хатчўп[/a] ишлатмаслик учун бўш " "қолдиринг, асли: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Хатчўплар жадвали" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4892,31 +4882,31 @@ msgstr "" "Устун изоҳлари/\"mime\"-турлари ҳақидаги маълумотларни ишлатмаслик учун бўш " "қолдиринг, асли: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Устун маълумотлари жадвали" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "MySQL сервеига уланишни қисиш" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Уланишни қисиш" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Серверга уланиш тури, агар билмасангиз, \"tcp\" деб қолдиринг" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Уланиш тури" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Назорат фойдаланувчиси пароли" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4925,19 +4915,19 @@ msgstr "" "батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]" "да мавжуд" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Назорат фойдаланувчиси" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Маълумотлар базалари рўйхати кўрсатилганда жадвалларни санаш" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Жадвалларни санаш" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4945,11 +4935,11 @@ msgstr "" "Дизайнер ишлатмаслик учун бўш қолдиринг, асл қиймати: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Дизайнер жадвали" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4958,30 +4948,30 @@ msgstr "" "bug tracker\"[/a] ва [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]ларга " "қаранг" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA ишлатишни ўчириш" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Қайси PHP кенгайтмасидан фойдаланмоқчисиз; иложи бўлса, \"mysqli\" " "кенгайтмасидан фойдаланинг" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Фойдаланиладиган PHP кенгайтмаси" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" "Мунтазам иборалар(PCRE)га тўғри келадиган маълумотлар базаларини яшириш" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Базаларни яшириш" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4989,43 +4979,43 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL сўровлари тарихи жадвали" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "MySQL сервери ишлаётган хост номи" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Сервер хост номи" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Чиқиш URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Паролсиз уланишга ҳаракат қилиш" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Паролсиз уланиш" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -5041,31 +5031,31 @@ msgstr "" "олдига тескари эгри чизиқ (\\) қўйишингиз керак, масалан \\\"my\\_db\\" "\" (лекин \"my_db\" эмас)" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Фақат рўйхатдаги базаларни кўрсатиш" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" "Агар \"config\" аутентификация усулидан фойдаланмасангиз, бўш қолдиринг" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "\"config\" аутентификация усули пароли" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]" "\"pma_pdf_pages\"[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF-схема: саҳифалар жадвали" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -5076,22 +5066,22 @@ msgstr "" "қаранг. Агар фойдаланмасангиз, бўшқолдиринг. Асл қиймати: [kbd]\"phpmyadmin" "\"[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "маълумотлар базаси номи" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "MySQL сервери тинглайдиган порт, асл қийматни қолдириш учун бўш қолдиринг" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Сервер порти" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5103,13 +5093,13 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Фойдаланувчи номини чақириб олиш" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -5117,19 +5107,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]Алоқа боғланишлари[/a]ни " "ишлатмаслик учун, бўш қолдиринг, асл қиймати: [kbd]\"pma_relation\"[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Алоқалар жадвали" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "Мавжуд жадвалларни кўрсатиш учун ишлатиладиган SQL буйруғи" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES буйруғи" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -5137,44 +5127,44 @@ msgstr "" "Намуна учун [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "аутентификация усуллари[/a]га қаранг" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Кириш сессияси номи" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Кириш URL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL сервери тинглайдиган сокет, асл қиймати учун бўш қолдиринг" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Сервер сокети" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" "SSL (Secure Sockets Layer - ҳимояланган сокетлар протоколи) уланишдан " "фойдаланиш" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "SSL уланишдан фойдаланиш" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]" "\"pma_table_coords\"[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF-схема: жадвал координаталари" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -5186,13 +5176,13 @@ msgstr "" "Кўрсатиладиган майдонлар шарҳлари сақланадиган жадвал, ишлатмаслик учун бўш " "қолдиринг, асл қиймати: [kbd]\"pma_table_info\"[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Майдонлар жадвалини кўрсатиш" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5204,53 +5194,53 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Жадвални дефрагментациялаш" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Тавсиф" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5262,25 +5252,25 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL сўровлари тарихи жадвали" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Автоматик тиклаш режими" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5292,15 +5282,15 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "\"config\" аутентификация усули фойдаланувчиси" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -5309,32 +5299,32 @@ msgstr "" "ишонсангиз, унда ўчириб қўйинг. Шундай қилсангиз, ортиқча текширувларнинг " "олдини олган бўласиз ва ишлаш унумдорлигини оширган бўласиз" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Кенгайтирилган текширув" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "MySQL сервери ишлаётган хост сервер номи" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Ушбу сервернинг кенгайтирилган номи" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Фойдаланувчига \"барча (ёзувлар)ни кўрсатиш\" тугмаси кўрсатилсинми?" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Барча қаторларни кўрсатишга рухсат бериш" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5343,57 +5333,57 @@ msgstr "" "Эсда тутинг, ушбу танловни ёқишингиз [kbd]\"config\"[/kbd] аутентификация " "усулидаги паролга таъсир этмайди" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Паролни ўзгартириш формасини кўрсатиш" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Маълумотлар базаси тузиш формасини кўрсатиш" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Databases display options" msgid "Show display direction" msgstr "Маълумотлар базаларини кўрсатиш афзалликлари" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Очиқ жадваллар рўйхати" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Таҳрирлаш/қўйиш режимида функциялар майдонини кўрсатиш" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Фукнциялармайдонини кўрсатиш" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "Тўрни кўрсатиш" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5401,34 +5391,34 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] функцияси " "натижасига боғ кўрсатиш" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "\"phpinfo()\" функциясига боғ кўрсатиш" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "MySQL сервери ҳақида батафсил маълумот кўрсатиш" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "phpMyAdmin томонидан генерация қилинган SQL сўровларини кўрсатиш керакми?" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Show SQL сўровларини кўрсатиш" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Маълумотлар базалари ва жадваллар статискасини (масалан, дискда эгаллаган " "жойи) кўрсатиш" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Статискани кўрсатиш" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5436,11 +5426,11 @@ msgstr "" "Агар кўрсатгич контекст ойнаси ёқилган бўлса ва маълумотлар базаларида шарҳ " "ўрнатилган бўлса, ушбу танлов база шарҳи ва ҳақиқий номи ўрнини алмаштиради" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "База номи ўрнига унинг шарҳини кўрсатиш" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5452,30 +5442,30 @@ msgstr "" "директивасида кўрсатилган усулда жадваллар бўлинади, лекин жадвал номлари " "ўзгаришсиз қолади" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Жадвал номи ўрнига унинг шарҳини кўрсатиш" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Жадвал шарҳларини кўрсатгич контекст ойнасида кўрсатиш" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Ишлатилаётган жадвалларни белгилаш ва қулфланган жадваллари мавжуд бўлган " "маълумотлар базаларини кўришга имкон бериш" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Қулфланган жадвалларни ташлаб кетишлик" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5485,28 +5475,28 @@ msgstr "" msgid "Password" msgstr "Парол" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Фойдаланувчи" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5514,65 +5504,65 @@ msgstr "" "\"База тузиш\" формасида маълумотлар базаси номини таклиф этинг ёки матн " "майдонини бўш қолдиринг" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Янги база номини таклиф этиш" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR майдонидаги устунлар сони" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR майдонидаги қаторлар сони" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Жадвал ёрлиғи" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5584,38 +5574,38 @@ msgstr "" "келаётган HTTP_X_FORWARDED_FOR (X-Forwarded-For) сарлавҳани ишончли деб " "қабул қилишини таъминлайди: [br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "IP бўйича рухсат бериш/рад этиш учун ишонарли прокси-серверлар рўйхати" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Серверда импорт файллари сақланадиган директория" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Импорт директорияси" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" "Маълумотлар базаси ичидаги маълумотларни тўлалигича қидиришга рухсат бериш" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Базани қидиришдан фойдаланиш" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5625,19 +5615,19 @@ msgstr "" "неча сўровниўз ичига олиши мумкинлиги \"libraries/import.lib.php\" файлида " "белгиланган." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Кенгайтирилган ибора" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Охирги версияни текшириш" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5645,7 +5635,7 @@ msgstr "" msgid "Version check" msgstr "Версияни текшириш" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5653,7 +5643,7 @@ msgstr "" "Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a] қисишни ёқиш" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5681,49 +5671,49 @@ msgstr "Аутентификация тартиби" msgid "Signon authentication" msgstr "Аутентификация тартиби" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "\"LOAD DATA\" ишлатилган CSV" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document жадвали" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Рангни танлаш" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Маълумотлар базаси экспорт параметрлари" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS Excel учун CSV" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "OpenDocument матн" @@ -5914,9 +5904,8 @@ msgstr "Жадвал тузиш" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Номи" @@ -6331,7 +6320,7 @@ msgid "Hide" msgstr "Яшириш" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "Ўгириш" @@ -7283,7 +7272,7 @@ msgstr "" msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Жадвал номи" @@ -8020,7 +8009,7 @@ msgstr "" msgid "Direction" msgstr "Тўғридан-тўғри боғланишлар" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Узунлик/қийматлар" @@ -8330,7 +8319,7 @@ msgstr "Мундарижа" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Атрибутлар" @@ -8639,7 +8628,7 @@ msgstr "Жадвал - бўш!" msgid "Tracking of %s.%s is activated." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8657,7 +8646,7 @@ msgstr "" "битталик қўштирноқ (\") белгилари олдидан тескари эгри чизиқ бўлиши керак, " "масалан: \"\\\\xyz\" ёки \"a\\\"b\"." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8665,13 +8654,13 @@ msgstr "" "\"Андозавий\" майдонлар қийматларида тескари эгри чизиқ ва қўштирноқларни " "ишлатманг." -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Индекс" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8680,11 +8669,11 @@ msgstr "" "Мавжуд MIME турлари ва ўгиришлар параметларини кўриш учун қуйидаги " "боғланишдан фойдаланинг: - \"%s\"ўзгариришлар тавсифи\"%s\"" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "Ўгиришлар параметрлари" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8696,36 +8685,36 @@ msgstr "" "белгилари олдидан тескари эгри чизиқ бўлиши керак, масалан: \"\\\\xyz\" ёки " "\"a\\\"b\"." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Йўқ" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Қоидага кўра:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Бирламчи" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Матн тўлалигича" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8734,28 +8723,28 @@ msgstr "" "Ҳозирги ватқда тавсиф мавжуд эмас.
Ишлатилаётган \"%s\" ўгиришлар " "намойиши функцияларининг иши яқин орада тавсифланади. " -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Устун(лар) қўшиш" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Ҳеч бўлмаганда битта майдон киритиш шарт." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Жадвал тури" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Бўлакларни (PARTITIONS) белгилаш" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new server" msgid "+ Add a value" diff --git a/po/uz@latin.po b/po/uz@latin.po index 6e05fb2563..797bac058d 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" @@ -66,7 +66,7 @@ msgstr "Qidirish" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -130,7 +130,7 @@ msgid "Database comment: " msgstr "Ma`lumotlar bazasiga izoh:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "Jadval izohi" @@ -140,7 +140,7 @@ msgstr "Jadval izohi" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -158,7 +158,7 @@ msgstr "Maydon nomlari" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -170,7 +170,7 @@ msgstr "Tur" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -181,7 +181,7 @@ msgstr "Null" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "Andoza" @@ -195,13 +195,13 @@ msgid "Links to" msgstr "Aloqalar" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "Izohlar" @@ -319,14 +319,14 @@ msgstr "Faqat ma`lumotlar" msgid "CREATE DATABASE before copying" msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" @@ -341,8 +341,8 @@ msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -368,7 +368,7 @@ msgid "Edit or export relational schema" msgstr "Aloqalar sxemasi" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -696,7 +696,7 @@ msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -764,7 +764,7 @@ msgstr "Ma`lumotlar lug‘ati" msgid "Tracked tables" msgstr "Kuzatilgan jadvallar" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -839,12 +839,12 @@ msgstr "Jadvalni kuzatish" msgid "Database Log" msgstr "Baza log faylini" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "" @@ -1210,7 +1210,7 @@ msgstr "Privilegiyalar qayta yuklanmoqda" msgid "Removing Selected Users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "Yopish" @@ -1218,7 +1218,7 @@ msgstr "Yopish" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Tahrirlash" @@ -1466,7 +1466,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1695,7 +1695,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1746,7 +1746,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1912,7 +1912,7 @@ msgstr "Maksimum bajarilish vaqti" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2507,7 +2507,7 @@ msgstr "Indeks belgilanmagan!" msgid "Indexes" msgstr "Indekslar" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2543,7 +2543,7 @@ msgid "" "removed." msgstr "%1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2864,18 +2864,18 @@ msgid "shared" msgstr "" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "Jadvallar" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2961,7 +2961,7 @@ msgstr "" " %1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin " "konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -3037,7 +3037,7 @@ msgstr "MySQL javobi: " msgid "Failed to connect to SQL validator!" msgstr "MySQL-serverga ulanib bo‘lmadi" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "So‘rov tahlili" @@ -3049,11 +3049,11 @@ msgstr "Tahlil kerak emas" msgid "Without PHP Code" msgstr "PHP-kod olib tashlash" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "PHP-kod" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "Yangilash" @@ -3062,7 +3062,7 @@ msgstr "Yangilash" msgid "Skip Validate SQL" msgstr "SQL sintaksisi tekshiruvini olib tashlash" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "SQL to‘g‘riligini tekshirish" @@ -3182,20 +3182,20 @@ msgid "Click to toggle" msgstr "Tanlash uchun sichqoncha tugmasini bosing" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Tuzilishi" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3408,7 +3408,7 @@ msgid "Set value: %s" msgstr "Quyidagi qiymatni o‘rnatish: \"%s\"" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Asl qiymatlarni tiklash" @@ -3582,114 +3582,104 @@ msgid "Default display direction" msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "Ma`lumotlar bazasiga kirishda ko‘rsatiladigan yorliq" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "Ma`lumotlar bazasi yorlig‘i" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "Serverga kirishda ko‘rsatiladigan yorliq" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "Server yorlig‘i" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "Jadvalga kirishda ko‘rsatiladigan yorliq" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "Jadval yorlig‘i" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 #, fuzzy #| msgid "Show binary contents as HEX" msgid "Show binary contents as HEX by default" msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "" "Ma`lumotlar bazasi ro‘yxatini pastga tushadigan menyu o‘rniga oddiy ro‘yxat " "shaklida ko‘rsatish" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "Ma`lumotlar bazasini ro‘yxat shaklida ko‘rsatish" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "" "Serverlar ro‘yxatini pastga tushadigan menyu o‘rniga oddiy ro‘yxat shaklida " "ko‘rsatish" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "Serverlar ro‘yxatini ko‘rsatish" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "Jadvalga xizmat ko‘rsatish" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 #, fuzzy #| msgid "Edit next row" msgid "Edit in window" msgstr "Keyingi qatorni tahrirlash" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 #, fuzzy #| msgid "Display Features" msgid "Display errors" msgstr "Imkoniyatlarni ko‘rsatish" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 #, fuzzy #| msgid "Ignore errors" msgid "Gather errors" msgstr "Xatolarga e`tibor bermaslik" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 #, fuzzy #| msgid "Ignore errors" msgid "Iconic errors" msgstr "Xatolarga e`tibor bermaslik" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" @@ -3697,32 +3687,32 @@ msgstr "" "Skript ishlashi mumkin bo‘lgan sekundlar soni (chegaramaslik uchun [kbd]0[/" "kbd] kiriting)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "Maksimum bajarilish vaqti" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "Fayl kabi saqlash" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "Fayl kodirovkasi" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "Format" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "Siqish" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 @@ -3731,70 +3721,70 @@ msgstr "Siqish" msgid "Put columns names in the first row" msgstr "Maydon nomlarini birinchi qatorga joylashtirish" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 #, fuzzy #| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Maydon qiymatlari quyidagi belgi ichiga olingan " -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 #, fuzzy #| msgid "Fields escaped by" msgid "Columns escaped by" msgstr "Belgi oldida quyidagi belgi mavjud " -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "NULL qiymatni quyidagiga almashtirish" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 #, fuzzy #| msgid "Remove CRLF characters within fields" msgid "Remove CRLF characters within columns" msgstr "Maydonlar ichidagi satrdan-satrga ko‘chirish belgilarini olib tashlash" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 #, fuzzy #| msgid "Lines terminated by" msgid "Columns terminated by" msgstr "Qatorlar bo‘luvchisi" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "Qatorlar bo‘luvchisi" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 #, fuzzy #| msgid "Excel edition" msgid "Excel edition" msgstr "Excel-versiyasi" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "Ma`lumotlar bazasi nomi shabloni" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "Server nomi shabloni" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "Jadval nomi shabloni" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 #, fuzzy @@ -3802,120 +3792,120 @@ msgstr "Jadval nomi shabloni" msgid "Dump table" msgstr "Jadvallar soni: \"%s\"" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "Jadvalga sarlavha qo‘shish" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "Jadval sarlavhasi" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "Jadval sarlavhasi (davomi)" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "Belgi identifikatori" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME turi" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "Aloqalar" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 #, fuzzy #| msgid "Export type" msgid "Export method" msgstr "Eskport turi" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "Serverga saqlash" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "Mavjud fayl(lar) ustidan yozish" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "Fayl nomi shablonini yodda saqlash" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 #, fuzzy #| msgid "Enclose table and field names with backquotes" msgid "Enclose table and column names with backquotes" msgstr "Jadval va maydon nomlarini teskari qo‘shtirnoqqa olish" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL bilan moslik rejimi" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "Tuzish, yangilash va tekshirish sanalari" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "Kechiktirilgan qo‘yish (DELAYED INSERTS) dan foydalanish" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "Tashqi kalitlarni tekshirishni o‘chirish" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "BLOB turidagi ma`lumotlarni o‘n oltilik shaklda namoyish etish" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "E`tibor bermaslik (IGNORE) qo‘yilmalardan foydalanish" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "Tuzilayogan so‘rovning maksimal uzunligi" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 #, fuzzy #| msgid "Export tables" msgid "Export type" msgstr "Jadvallarni eksport qilish" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "Tranzaksiyaga eksportni qo‘shish" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "Vaqtni UTC shaklda eksport qilish" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "phpMyAdmin ishlatilganda xavfsiz (SSL) ulanishga majbur qilish" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "Xavfsiz (SSL) ulanishga majbur qilish" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3923,178 +3913,178 @@ msgstr "" "Tashqi kalit menyusining tartiblash usuli: [kbd]content[/kbd] - murojaat " "ma`lumotlari bo‘yicha, [kbd]id[/kbd] - kalit qiymatlar bo‘yicha" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "Tashqi kalit menyusi tartibi" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "Agar kamroq qiymat bo‘lsa, pastga tushuvchi menyu ishlatiladi" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "Tashqi kalit chegaralari" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "Ko‘rib chiqish usul" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "Ko‘rib chiqish usulini sozlash" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 #, fuzzy #| msgid "Customize default export options" msgid "Customize default options" msgstr "Eksport afzalliklarini sozlash" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "Tahrirlash usuli" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "Tahrirlash usulini sozlash" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "Eksport" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "Eksport afzalliklarini sozlash" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "Funksiyalar" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 #, fuzzy #| msgid "Generate" msgid "General" msgstr "Generatsiya qilish" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "Import" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "Import afzalliklarini sozlash" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "Import/Eksport" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "Import va eksport kataloglari va qisish usullarini belgilash" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "Navigatsiya paneli" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "Navigatsiya paneli ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "Serverlar" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "Serverlar ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "Jadvallar ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "Asosiy ramka" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 #, fuzzy #| msgid "Open Document Text" msgid "Open Document" msgstr "OpenDocument matn" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "Boshqa sozlanishlar" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "Boshqa joyga sig‘magan sozlanishlar" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 #, fuzzy #| msgid "Page number:" msgid "Page titles" msgstr "Sahifa raqami: " -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "So‘rovlar oynasi ko‘rinishini sozlash" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "Xavfsizlik" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" @@ -4102,27 +4092,27 @@ msgstr "" "Esda tuting, phpMyAdmin - bu faqatgina foydalanuvchi interfeysi bo‘lib, " "uning xususiyatlari MySQL-serverining funksiyalarini chegaralamaydi" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "Asosiy sozlanishlar" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 #, fuzzy #| msgid "Authentication type" msgid "Authentication" msgstr "Autentifikatsiya usuli" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 #, fuzzy #| msgid "Authentication type" msgid "Authentication settings" msgstr "Autentifikatsiya usuli" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "Server konfiguratsiyasi" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" @@ -4130,17 +4120,17 @@ msgstr "" "Kengaytirilgan server konfiguarsiyasi, agar ularning ma`nosini aniq " "bilmasangiz, yaxshisi, ularga tegmang." -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "Serverning ulanish parametrlarini kiritish" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 #, fuzzy #| msgid "Configuration file" msgid "Configuration storage" msgstr "Konfiguratsion fayl" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 #, fuzzy #| msgid "" #| "Configure phpMyAdmin database to gain access to additional features, see " @@ -4156,58 +4146,58 @@ msgstr "" "Documentation.html#linked-tables]ulangan jadvallar infratuzilmasini[/a] " "qarab chiqing" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "Eksport tanlovlarini moslashtirish" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "Import tanlovlarini moslashtirish" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "Navigatsiya panelini moslashtirish" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "Asosiy ramkani moslashtirish" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL so‘rovlari" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL so‘rovlari qutisi" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "SQL so‘rovlari qutisida ko‘rsatiladigan bog‘larni sozlash" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 #, fuzzy #| msgid "SQL queries" msgid "SQL queries settings" msgstr "SQL so‘rovlari" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 #, fuzzy #| msgid "SQL history" msgid "SQL Validator" msgstr "SQL-so‘rovlar tarixi" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -4215,49 +4205,49 @@ msgid "" "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "Boshlang‘ich" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "Boshlang‘ich sahifani sozlash" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "Yorliqlar" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "Yorliqlar qanday ishlashini tanlang" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 #, fuzzy #| msgid "Use text field" msgid "Text fields" msgstr "Matnmaydonini ishlatish" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 #, fuzzy #| msgid "Customize export options" msgid "Customize text input fields" msgstr "Eksport tanlovlarini moslashtirish" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! matn" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 #, fuzzy #| msgid "Warning" msgid "Warnings" msgstr "Ogohlantirish" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -4265,15 +4255,15 @@ msgstr "" "Import va eksport operatsiyalarida [a@http://en.wikipedia.org/wiki/Gzip]" "gzip[/a] yordamida siqishni yoqish" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "iconv uchun qo‘shimcha parametrlar" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -4281,11 +4271,11 @@ msgstr "" "Agar yoqilgan bo‘lsa, phpMyAdmin, hatto so‘rovlardan biri barbod bo‘lganda " "ham, ko‘p qismli so‘rovlarni hisoblashni davom etadi" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "Ko‘p qismli so‘rovlardagi xatolarga e`tibor bermaslik" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -4295,21 +4285,21 @@ msgstr "" "ruxsat berish. Bu katta fayllarni yuklash uchun yaxshi usul, lekin u " "tranzaksiyalarni buzishi mumkin." -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "Qisman import: uzishga ruxsat berish" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" @@ -4317,100 +4307,100 @@ msgstr "" "Import fayl formati; yodda tutingki, ushbu ro‘yxat (ma`lumotlar bazasi, " "jadval) joylashishiga bog‘liq va faqat SQL ishlaydi" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "Import qilinayotgan fayl formati" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "\"LOCAL\" kalit so‘zini ishlatish" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "Birinchi qatorga ustun nomlari" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "Bo‘sh qatorlarni import qilmaslik" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 #, fuzzy #| msgid "Import currencies ($5.00 to 5.00)" msgid "Import currencies ($5.00 to 5.00)" msgstr "Pul birliklarini import qilish (masalan, $5.00 ni 5.00 ga)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 #, fuzzy #| msgid "Import percentages as proper decimals (12.00% to .12)" msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" "Foizlarni mos o‘nli kasrlar kabi import qilish (masalan, 12.00% o‘rniga 0.12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 #, fuzzy #| msgid "Number of records (queries) to skip from start" msgid "Number of queries to skip from start" msgstr "" "Fayl boshidagi e`tibor berish kerak bo‘lmagan qatorlar (so‘rovlar) soni" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "Qisman import: so‘rovlarga e`tibor bermaslik" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 #, fuzzy #| msgid "Do not use AUTO_INCREMENT for zero values" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nol qiymatlari uchun \"AUTO_INCREMENT\" ishlatmaslik" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "Bir vaqtning o‘zidanechta qator qo‘yilishi mumkin" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "Qo‘yilgan qatorlar soni" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "Tezkor murojaat piktogrammasi uchun nishon" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "Chap ramkada logotipni ko‘rsatish" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "Logotipni ko‘rsatish" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "Chap ramkaning yuqori qismida server tanlovini ko‘rsatish" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "Server tanlovini ko‘rsatish" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Minimum number of tables to display the table filter box" msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "Ma`lumotlar bazalarini daraxtning turli darajalariga bo‘luvchi satr" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "Ma`lumotlar bazasi daraxtining bo‘luvchisi" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" @@ -4418,41 +4408,41 @@ msgstr "" "Yengil versiya; ma`lumotlar bazalarini daraxtda ko‘rsatish (quyida " "belgilangan satr bilan bo‘linadi)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "Ma`lumotlar bazalarini daraxtda ko‘rsatish" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "" "Agar barcha ma`lumotlar bazalarini ko‘rmoqchi bo‘lsangiz, ushbu tanlovni " "o‘chiring" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "Yengil versiyadan foydalanish" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "Jadvallar daraxtining maksimum chuqurligi" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "Jadvallarni daraxtning turli darajalariga bo‘luvchi satr" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "Jadval daraxtining bo‘luvchisi" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logotip bog‘langan URL" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" @@ -4460,50 +4450,50 @@ msgstr "" "Bog‘langan sahifani bosh oynada ([kbd]bosh[/kbd]) yoki yangi oynada ([kbd]" "yangi[/kbd]) ochish" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logotip bog‘langan nishon" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "Sichqoncha kursori turgan serverni belgilash" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "Belgilashni yoqish" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "Kuzatilmagan jadvallar" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "Kamroq grafikali yorliqlarni ishlatish" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "Yengil yorliqlar" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 #, fuzzy #| msgid "Maximum number of characters used when a SQL query is displayed" msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "SQL so‘rovi ko‘rsatilganda ishlatiladigan belgilarning maksimal soni" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4515,11 +4505,11 @@ msgstr "" "ulanganbo‘lsa, unda YOLG‘ON (FALSE) tanlovi boshqa serverlardan chiqish " "unitilishiga olib kelishi mumkin." -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "Chiqishda barcha \"cookies\"larni o‘chirish" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" @@ -4527,11 +4517,11 @@ msgstr "" "cookie-autentifikatsiya usulidan foydalanilganda oldingi login sessiyasi " "qayta chaqirilib olinishi kerakmi?" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "Foydalanuvchi nomini chaqirib olish" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4543,55 +4533,55 @@ msgstr "" "sessiya uchun saqlanadi va brauzer oynasi yopilgan zahoti o‘chiriladi. Bu " "qiymat ishonchsiz muhitlar uchun tavsiya etiladi." -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "Login ma`lumotini cookie-da saqlash" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "" "cookie-login usuli qancha vaqt (sekundlarda) yaroqli bo‘lishini belgilang" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "cookie-login yaroqligi" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "SQL so‘rovi ko‘rsatilganda ishlatiladigan belgilarning maksimal soni" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "SQL so‘rovining maksimal uzunligi" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "" "Chap ramkada va bazalar ro‘yxatida ko‘rsatiladigan ma`lumotlar bazalarining " "maksimal soni" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "Ma`lumotlar bazalarining maksimal soni" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4601,29 +4591,29 @@ msgstr "" "ko‘rsatilgan qiymatdan ko‘p bo‘lsa, \"Oldingi\" va \"Keyingi\" bog‘lanishlar " "ko‘rsatiladi." -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "Ko‘rsatiladigan qatorlarning maksimal soni" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "Maksimal jadvallar soni" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" @@ -4631,47 +4621,47 @@ msgstr "" "Skript uchun ajratiladigan baylardagi xotira miqdori, masalan [kbd]32M[/kbd] " "([kbd]0[/kbd] - chegaralanmagan)." -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "Xotira miqdori" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Jadval sortirovkasini o‘zgartirish" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Faqat piktogramma, faqat matn yoki har ikkisini ishlatish" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Piktogrammali navigatsiya menyusi" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "HTTP orqali ma`lumot uzatishda yuqori tezlikka erishish uchun GZip " "buferizatsiyadan foydalaning" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip buferizatsiya" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -4683,46 +4673,46 @@ msgstr "" "[kbd]SMART[/kbd] – ya`ni, TIME, DATE, DATETIME va TIMESTAMP turidagi " "maydonlar uchun kamayish tartibida, aks holda ko‘payish tartibida" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Asl tartiblash qoidasi" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL ma`lumotlar bazalarida doimiy ulanishlardan foydalanish" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Doimiy ulanishlar" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Jadval operatsiyalarini piktogrammalar yordamida amalga oshirish" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB va BINARY maydonlarini tahirlashni man etish" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Binar (ikkilik) maydonlarni himoyalash" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -4736,136 +4726,136 @@ msgstr "" "tanlovni yoqing (pmadb talab etiladi). Ushbu tanlov o‘chirilgan bo‘lsa, oyna " "yopilgan zahoti so‘rovlar tarixi yo‘qoladi." -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Doimiy so‘rovlar tarixi" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Jurnalda saqlanadigan so‘rovlar soni" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "So‘rovlar tarixi uzunligi" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Yangi so‘rovlar oynasi ochilganda ko‘rsatiladigan yorliq" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "So‘rovlar oynasining yorlig‘i" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Kodirovkalarni bir-biriga o‘tkazishda foydalaniladigan funksiyalarni tanlang" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Kodirovkalash funksiyasi" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Jadval nomini o‘zgartirish" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Oqimli tiklash" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "Serverdagi eksport fayllar saqlanadigan direktoriya" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "Saqlash direktoriyasi" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "Agar ishlatilmasa bo‘sh qoldiring" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Autentifikatsiya tartibi" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "Asl qoidalarni ishlatish uchun bo‘sh qoldiring" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Autentifikatsiya qoidalari" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "Parolsiz qirishga ruxsat bеrish" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "\"root\"ga kirishga ruxsat berish" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "HTTP Avtorizatsiya vaqtida ko‘rsatiladigan Oddiy HTTP Avtorizatsiya Bo‘limi " "nomi" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP Bo‘limi" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4875,19 +4865,19 @@ msgstr "" "konfiguratsion fayl yo‘li (hujjatlar katalogiga joylashtirilmagan; tavsiya " "etiladi: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "\"SweKey\" konfiguratsiya fayli" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "Foydalaniladigan autentifikatsiya usuli" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "Autentifikatsiya usuli" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4895,11 +4885,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]Xatcho‘p[/a] ishlatmaslik uchun " "bo‘sh qoldiring, asli: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "Xatcho‘plar jadvali" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4907,31 +4897,31 @@ msgstr "" "Ustun izohlari/\"mime\"-turlari haqidagi ma`lumotlarni ishlatmaslik uchun " "bo‘sh qoldiring, asli: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "Ustun ma`lumotlari jadvali" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "MySQL serveiga ulanishni qisish" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "Ulanishni qisish" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Serverga ulanish turi, agar bilmasangiz, \"tcp\" deb qoldiring" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "Ulanish turi" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "Nazorat foydalanuvchisi paroli" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4940,19 +4930,19 @@ msgstr "" "batafsil ma`lumot [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]" "da mavjud" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "Nazorat foydalanuvchisi" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "Ma`lumotlar bazalari ro‘yxati ko‘rsatilganda jadvallarni sanash" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "Jadvallarni sanash" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4960,11 +4950,11 @@ msgstr "" "Dizayner ishlatmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "Dizayner jadvali" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4973,30 +4963,30 @@ msgstr "" "\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" "larga qarang" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA ishlatishni o‘chirish" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Qaysi PHP kengaytmasidan foydalanmoqchisiz; iloji bo‘lsa, \"mysqli\" " "kengaytmasidan foydalaning" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "Foydalaniladigan PHP kengaytmasi" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "" "Muntazam iboralar(PCRE)ga to‘g‘ri keladigan ma`lumotlar bazalarini yashirish" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "Bazalarni yashirish" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -5004,43 +4994,43 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL so‘rovlari tarixi jadvali" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "MySQL sеrvеri ishlayotgan xost nomi" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "Sеrvеr xost nomi" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "Chiqish URL" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "Parolsiz ulanishga harakat qilish" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "Parolsiz ulanish" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -5056,31 +5046,31 @@ msgstr "" "oldiga teskari egri chiziq (\\) qo‘yishingiz kerak, masalan \\\"my\\_db\\" "\" (lekin \"my_db\" emas)" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "Faqat ro‘yxatdagi bazalarni ko‘rsatish" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "" "Agar \"config\" autentifikatsiya usulidan foydalanmasangiz, bo‘sh qoldiring" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "\"config\" autentifikatsiya usuli paroli" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 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]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF-sxema: sahifalar jadvali" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -5091,22 +5081,22 @@ msgstr "" "ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]" "\"phpmyadmin\"[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "ma`lumotlar bazasi nomi" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "MySQL serveri tinglaydigan port, asl qiymatni qoldirish uchun bo‘sh qoldiring" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "Server porti" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5118,13 +5108,13 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Foydalanuvchi nomini chaqirib olish" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -5132,19 +5122,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]Aloqa bog‘lanishlari[/a]ni " "ishlatmaslik uchun, bo‘sh qoldiring, asl qiymati: [kbd]\"pma_relation\"[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "Aloqalar jadvali" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "Mavjud jadvallarni ko‘rsatish uchun ishlatiladigan SQL buyrug‘i" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES buyrug‘i" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -5152,44 +5142,44 @@ msgstr "" "Namuna uchun [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "autentifikatsiya usullari[/a]ga qarang" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Kirish sessiyasi nomi" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "Kirish URL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL serveri tinglaydigan soket, asl qiymati uchun bo‘sh qoldiring" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "Server soketi" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "" "SSL (Secure Sockets Layer - himoyalangan soketlar protokoli) ulanishdan " "foydalanish" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "SSL ulanishdan foydalanish" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 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]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF-sxema: jadval koordinatalari" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -5201,13 +5191,13 @@ msgstr "" "Ko‘rsatiladigan maydonlar sharhlari saqlanadigan jadval, ishlatmaslik uchun " "bo‘sh qoldiring, asl qiymati: [kbd]\"pma_table_info\"[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Maydonlar jadvalini ko‘rsatish" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5219,53 +5209,53 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Jadvalni defragmentatsiyalash" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Tavsif" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5277,25 +5267,25 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL so‘rovlari tarixi jadvali" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Avtomatik tiklash rejimi" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -5307,15 +5297,15 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "\"config\" autentifikatsiya usuli foydalanuvchisi" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -5325,21 +5315,21 @@ msgstr "" "tekshiruvlarning oldini olgan bo‘lasiz va ishlash unumdorligini oshirgan " "bo‘lasiz" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "Kengaytirilgan tekshiruv" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "MySQL serveri ishlayotgan xost server nomi" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "Ushbu serverning kengaytirilgan nomi" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -5347,11 +5337,11 @@ msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Foydalanuvchiga \"barcha (yozuvlar)ni ko‘rsatish\" tugmasi ko‘rsatilsinmi?" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "Barcha qatorlarni ko‘rsatishga ruxsat berish" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -5360,57 +5350,57 @@ msgstr "" "Esda tuting, ushbu tanlovni yoqishingiz [kbd]\"config\"[/kbd] " "autentifikatsiya usulidagi parolga ta`sir etmaydi" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "Parolni o‘zgartirish formasini ko‘rsatish" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "Ma`lumotlar bazasi tuzish formasini ko‘rsatish" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Databases display options" msgid "Show display direction" msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Ochiq jadvallar ro‘yxati" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "Tahrirlash/qo‘yish rejimida funksiyalar maydonini ko‘rsatish" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "Fuknsiyalarmaydonini ko‘rsatish" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "To‘rni ko‘rsatish" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -5418,35 +5408,35 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] funksiyasi " "natijasiga bog‘ ko‘rsatish" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "\"phpinfo()\" funksiyasiga bog‘ ko‘rsatish" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "MySQL serveri haqida batafsil ma`lumot ko‘rsatish" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "phpMyAdmin tomonidan generatsiya qilingan SQL so‘rovlarini ko‘rsatish " "kerakmi?" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "Show SQL so‘rovlarini ko‘rsatish" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Ma`lumotlar bazalari va jadvallar statiskasini (masalan, diskda egallagan " "joyi) ko‘rsatish" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "Statiskani ko‘rsatish" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -5455,11 +5445,11 @@ msgstr "" "sharh o‘rnatilgan bo‘lsa, ushbu tanlov baza sharhi va haqiqiy nomi o‘rnini " "almashtiradi" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "Baza nomi o‘rniga uning sharhini ko‘rsatish" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5471,30 +5461,30 @@ msgstr "" "direktivasida ko‘rsatilgan usulda jadvallar bo‘linadi, lekin jadval nomlari " "o‘zgarishsiz qoladi" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "Jadval nomi o‘rniga uning sharhini ko‘rsatish" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "Jadval sharhlarini ko‘rsatgich kontekst oynasida ko‘rsatish" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Ishlatilayotgan jadvallarni belgilash va qulflangan jadvallari mavjud " "bo‘lgan ma`lumotlar bazalarini ko‘rishga imkon berish" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "Qulflangan jadvallarni tashlab ketishlik" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5504,28 +5494,28 @@ msgstr "" msgid "Password" msgstr "Parol" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "Foydalanuvchi" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -5533,65 +5523,65 @@ msgstr "" "\"Baza tuzish\" formasida ma`lumotlar bazasi nomini taklif eting yoki matn " "maydonini bo‘sh qoldiring" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "Yangi baza nomini taklif etish" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR maydonidagi ustunlar soni" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR maydonidagi qatorlar soni" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Jadval yorlig‘i" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5603,40 +5593,40 @@ msgstr "" "kelayotgan HTTP_X_FORWARDED_FOR (X-Forwarded-For) sarlavhani ishonchli deb " "qabul qilishini ta`minlaydi: [br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "" "IP bo‘yicha ruxsat berish/rad etish uchun ishonarli proksi-serverlar ro‘yxati" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "Serverda import fayllari saqlanadigan direktoriya" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "Import direktoriyasi" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "" "Ma`lumotlar bazasi ichidagi ma`lumotlarni to‘laligicha qidirishga ruxsat " "berish" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "Bazani qidirishdan foydalanish" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5646,19 +5636,19 @@ msgstr "" "necha so‘rovnio‘z ichiga olishi mumkinligi \"libraries/import.lib.php\" " "faylida belgilangan." -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "Kengaytirilgan ibora" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "Oxirgi versiyani tekshirish" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5666,7 +5656,7 @@ msgstr "" msgid "Version check" msgstr "Versiyani tekshirish" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5674,7 +5664,7 @@ msgstr "" "Import va eksport operatsiyalari uchun [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a] qisishni yoqish" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5702,49 +5692,49 @@ msgstr "Autentifikatsiya tartibi" msgid "Signon authentication" msgstr "Autentifikatsiya tartibi" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "\"LOAD DATA\" ishlatilgan CSV" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document jadvali" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Rangni tanlash" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "Ma`lumotlar bazasi eksport parametrlari" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS Excel uchun CSV" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "OpenDocument matn" @@ -5935,9 +5925,8 @@ msgstr "Jadval tuzish" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "Nomi" @@ -6353,7 +6342,7 @@ msgid "Hide" msgstr "Yashirish" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "O‘girish" @@ -7310,7 +7299,7 @@ msgstr "" msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "Jadval nomi" @@ -8049,7 +8038,7 @@ msgstr "" msgid "Direction" msgstr "To‘g‘ridan-to‘g‘ri bog‘lanishlar" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "Uzunlik/qiymatlar" @@ -8359,7 +8348,7 @@ msgstr "Mundarija" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "Atributlar" @@ -8670,7 +8659,7 @@ msgstr "Jadval - bo‘sh!" msgid "Tracking of %s.%s is activated." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 #, fuzzy #| msgid "" #| "If field type is \"enum\" or \"set\", please enter the values using this " @@ -8688,7 +8677,7 @@ msgstr "" "va bittalik qo‘shtirnoq (\") belgilari oldidan teskari egri chiziq bo‘lishi " "kerak, masalan: \"\\\\xyz\" yoki \"a\\\"b\"." -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -8696,13 +8685,13 @@ msgstr "" "\"Andozaviy\" maydonlar qiymatlarida teskari egri chiziq va qo‘shtirnoqlarni " "ishlatmang." -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "Indeks" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -8711,11 +8700,11 @@ msgstr "" "Mavjud MIME turlari va o‘girishlar parametlarini ko‘rish uchun quyidagi " "bog‘lanishdan foydalaning: - \"%s\"o‘zgaririshlar tavsifi\"%s\"" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "O‘girishlar parametrlari" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8727,36 +8716,36 @@ msgstr "" "(\") belgilari oldidan teskari egri chiziq bo‘lishi kerak, masalan: \"\\\\xyz" "\" yoki \"a\\\"b\"." -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Yo‘q" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "Qoidaga ko‘ra:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "Birlamchi" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "Matn to‘laligicha" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " @@ -8765,28 +8754,28 @@ msgstr "" "Hozirgi vatqda tavsif mavjud emas.
Ishlatilayotgan \"%s\" o‘girishlar " "namoyishi funksiyalarining ishi yaqin orada tavsiflanadi. " -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Ustun(lar) qo‘shish" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Hech bo‘lmaganda bitta maydon kiritish shart." -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "Jadval turi" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "Bo‘laklarni (PARTITIONS) belgilash" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "Add a new server" msgid "+ Add a value" diff --git a/po/zh_CN.po b/po/zh_CN.po index 1d1d17fa80..96040e00d1 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-09-15 07:49+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -65,7 +65,7 @@ msgstr "搜索" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -127,7 +127,7 @@ msgid "Database comment: " msgstr "数据库注释:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "表注释" @@ -137,7 +137,7 @@ msgstr "表注释" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -153,7 +153,7 @@ msgstr "字段" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -165,7 +165,7 @@ msgstr "类型" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -176,7 +176,7 @@ msgstr "空" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "默认" @@ -190,13 +190,13 @@ msgid "Links to" msgstr "链接到" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "注释" @@ -310,14 +310,14 @@ msgstr "仅数据" msgid "CREATE DATABASE before copying" msgstr "复制前创建数据库 (CREATE DATABASE)" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "添加 %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "添加自增 (AUTO_INCREMENT) 值" @@ -332,8 +332,8 @@ msgstr "切换到复制的数据库" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -352,7 +352,7 @@ msgid "Edit or export relational schema" msgstr "编辑或导出关系大纲" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -657,7 +657,7 @@ msgid "Check tables having overhead" msgstr "仅选择多余" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -719,7 +719,7 @@ msgstr "数据字典" msgid "Tracked tables" msgstr "已追踪的表" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -794,12 +794,12 @@ msgstr "追踪表" msgid "Database Log" msgstr "数据库日志" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "字段“%s”的值" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "请将每个值分别输入在不同的输入框中。" @@ -1126,7 +1126,7 @@ msgstr "重新载入权限" msgid "Removing Selected Users" msgstr "正在删除选中的用户" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "关闭" @@ -1134,7 +1134,7 @@ msgstr "关闭" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "编辑" @@ -1346,7 +1346,7 @@ msgstr "请至少添加一个数据" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1560,7 +1560,7 @@ msgid "" "config..." msgstr "导入配置失败。正在重设为默认设置..." -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1613,7 +1613,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1742,7 +1742,7 @@ msgstr "查询执行时间" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2252,7 +2252,7 @@ msgstr "没有已定义的索引!" msgid "Indexes" msgstr "索引" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2288,7 +2288,7 @@ msgid "" "removed." msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2583,18 +2583,18 @@ msgid "shared" msgstr "已共享" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "数据表" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2666,7 +2666,7 @@ msgstr "无效的服务器索引: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "无效的主机名 %1$s,请检查配置文件。" -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2738,7 +2738,7 @@ msgstr "MySQL 返回:" msgid "Failed to connect to SQL validator!" msgstr "连接到 SQL 校验器失败!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "解释 SQL" @@ -2750,11 +2750,11 @@ msgstr "略过解释 SQL" msgid "Without PHP Code" msgstr "无 PHP 代码" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "创建 PHP 代码" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "刷新" @@ -2763,7 +2763,7 @@ msgstr "刷新" msgid "Skip Validate SQL" msgstr "略过校验 SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "校验 SQL" @@ -2867,20 +2867,20 @@ msgid "Click to toggle" msgstr "点击切换" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "结构" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3079,7 +3079,7 @@ msgid "Set value: %s" msgstr "设置值: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "还原默认值" @@ -3234,304 +3234,292 @@ msgid "Default display direction" msgstr "默认显示模式" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal (水平)[/kbd]、[kbd]vertical (垂直)[/kbd] 或限定使用垂直模式的" -"最大数值" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "修改/新建字段时的显示模式" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "在进入数据库标签时默认显示的页面" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "默认数据库标签" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "在进入服务器标签时默认显示的页面" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "默认服务器标签" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "在进入数据表标签时默认显示的页面" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "默认数据表标签" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "默认以十六进制显示二进制内容" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "以十六进制显示二进制内容" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "直接显示数据库列表而不使用下拉框" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "显示数据库为列表" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "直接显示服务器列表而不使用下拉框" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "显示服务器为列表" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "禁止大量表维护操作,例如优化或修复一个数据库中的选中表。" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 msgid "Disable multi table maintenance" msgstr "禁止多表维护" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "在新窗口中编辑 SQL 查询" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "在窗口中编辑" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "显示错误" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "收集错误" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "在警告、错误和信息上显示图标" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "错误图标" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "设置脚本最大运行时间 (单位:秒,[kbd]0[/kbd] 为不限制)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "最长执行时间" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "另存为文件" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "文件字符集" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "格式" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "压缩" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "首行保存字段名" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "内容分隔符" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "内容转义符" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "将 NULL 替换为" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "删除字段中的回车换行符" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "字段分隔符" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "换行符" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel 版本" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "数据库名模板" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "服务器名模板" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "数据表名模板" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "转储数据表" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "包含表的标题" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "表的标题" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "延续的表的标题" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "关键标签" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME 类型" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "关系" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "导出方式" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "保存在服务器上" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "覆盖已有文件" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "记住文件名模板" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "给数据表名及字段名加上反引号" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL 兼容模式" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "CREATE TABLE 选项:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "创建/更新/检查日期" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "使用延迟插入" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "禁止选定不相关的主键" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "为 BLOB 字段使用16进制 (HEX)" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "使用忽略插入" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "在插入数据时使用的语法" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "创建查询的最大长度" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "导出类型" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "处理事务中封装输出" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "以协调世界时 (UTC) 导出时间" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "强制使用安全连接访问 phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "强制 SSL 连接" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3539,148 +3527,148 @@ msgstr "" "外键下拉框中选项的排序顺序,[kbd]content[/kbd] 为关联内容,[kbd]id[/kbd] 为键" "值" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "外键下拉框顺序" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "下拉框中选项个数的限制" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "外键限制" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "浏览模式" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "自定义浏览模式" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "自定义默认选项" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "开发" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "phpMyAdmin 开发设置" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "编辑模式" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "自定义编辑模式" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "导出选项" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "自定义导出选项的默认值" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "功能" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "常规" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "设置某些常用选项" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "导入选项" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "自定义导入选项的默认值" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "导入 / 导出" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "设置导入和导出文件夹以及压缩选项" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "数据库显示选项" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "导航框架" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "自定义导航框架" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "服务器" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "服务器显示选项" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "数据表显示选项" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "主框架" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "微软 Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "开放文档" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "其他核心设置" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "其他设置" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "页面标题" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3689,58 +3677,58 @@ msgstr "" "设置浏览器标题栏所显示的文字。参见[a@Documentation.html#cfg_TitleTable]文档[/" "a]中关于可以取得特殊值的魔术字符串。" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "查询窗口" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "自定义查询窗口选项" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "安全" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "注意:phpMyAdmin 只是一个用户接口,其功能不会对 MySQL 有限制" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "基本设置" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "认证" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "认证设置" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "服务器设置" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "高级服务器设置,如果你不知道这些是什么,请不要修改" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "服务器连接参数" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "高级功能" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3749,54 +3737,54 @@ msgstr "" "配置 phpMyAdmin 高级功能,参见文档[a@Documentation.html#linked-tables]" "phpMyAdmin 高级功能[/a]" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "修改追踪" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "追踪数据库的修改。需要 phpMyAdmin 高级功能。" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "自定义导出选项" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "自定义导入选项" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "自定义导航框架" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "自定义主框架" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL 查询" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL 查询框" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "自定义显示在 SQL 查询框中的链接" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL 查询设置" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL 校验器" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3807,43 +3795,43 @@ msgstr "" "[/strong]。[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL 校验器[/a],版" "权所有 2002 Upright Database Technology. 保留所有权利。[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "起始页" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "自定义起始页" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "标签" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "选择你想让标签怎样工作" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "文本字段" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "自定义文本输入框" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! 文本" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "警告" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "禁止部分 phpMyAdmin 发出的警告" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" @@ -3851,15 +3839,15 @@ msgstr "" "允许在导入和导出时使用 [a@http://en.wikipedia.org/wiki/Gzip]gzip (外链,英文)" "[/a] 压缩" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "iconv 的额外参数" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3867,11 +3855,11 @@ msgstr "" "如果打开此选项,在执行多语句查询的时候,即使有一条或多条语句发生错误," "phpMyAdmin 也会继续执行其他的语句" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "忽略多个语句错误" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3880,192 +3868,192 @@ msgstr "" "该功能作用于在导入时脚本检测到可能需要花费很长时间。尽管这会中断事务,但在导" "入大文件时是个很好的方法。" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "部分导入:允许中断" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "不在发生插入错误时中断" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "将表的数据用此文件替换" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" "默认格式,此列表根据位置(数据库或数据表)不同将有所改变,只有 SQL 总是可用的" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "导入文件的格式" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "使用本地 (LOCAL) 关键词" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "忽略首行 (首行为字段名)" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "不导入空行" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "导入货币 ($5.00 将被导入为 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "导入百分数为小数 (12.00% 将被导入为 .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "跳过查询的数量" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "部分导入:跳过查询" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "不要给零值使用自增 (AUTO_INCREMENT)" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "滑块初始状态" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "一次可以插入的行数" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "插入的行数" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "快速访问图标的目标" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "在左侧框架中显示 logo" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "显示 logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "在左侧框架顶部显示服务器选择" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "显示服务器选择" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "显示快速搜索框的最少数据表数量" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "将数据库分为不同树的分隔字符串" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "树状数据库分隔符" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "只使用简洁版,以树形显示数据库 (以下面的树形分隔符来显示)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "以树形显示数据库" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "如果想一次性浏览所有数据库,则禁用该选项" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "使用简洁版" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "数据表树最大深度" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "将表分为不同树的分隔符" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "树形表分隔符" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "导航框架中 logo 的地址" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logo 链接地址" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "在主窗口 ([kbd]main[/kbd]) 或新窗口 ([kbd]new[/kbd]) 打开目标页面" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logo 链接目标" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "高亮显示鼠标所在位置的服务器" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "启用高亮" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "在数据表列表中最多显示的数据表个数" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 msgid "Recently used tables" msgstr "最近使用的表" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "不在标签上使用背景" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "简化标签" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "浏览非数字字段时所显示的最大字符数" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "限制字段字符数" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4074,21 +4062,21 @@ msgstr "" "如果设为 TRUE,在退出时将会删除所有服务器的 Cookies。如果设为 FALSE,在您登录" "多台服务器的时候,容易忘记退出登录。" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "退出时删除所有 cookies" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "定义在 cookie 认证方式中是否显示上次登录的用户名" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "显示上次登录的用户名" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4099,52 +4087,52 @@ msgstr "" "为浏览器进程,在关闭浏览器之后 Cookies 就会被删除。默认值为0。在不安全的环境" "下建议使用默认值。" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "登录 cookie 存储" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "定义登录 cookie 的有效期 (单位:秒)" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "登录 cookie 有效期" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "放大一倍 LONGTEXT 字段的输入框" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "放大 LONGTEXT 字段的输入框" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "在主页上使用图标" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "显示 SQL 语句时可以使用的最多字符数" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "显示 SQL 语句的最大长度" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "用户不能设置更大的值" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "在左栏和数据库列表中最多显示的数据库个数" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "最大数据库数量" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4153,71 +4141,71 @@ msgstr "" "浏览一个结果集时一次显示的最多行数。如果结果集超过此值,将会显示 "上一页" "" 和 "下一页" 的链接。" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "显示的最多行数" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "在数据表列表中最多显示的数据表个数" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "最大数据表数量" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "禁止显示在使用 cookie 认证时缺少 mcrypt 的默认警告" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt 警告" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "一个脚本可分配到的内存大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]为不限制)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "内存限制" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 msgid "These are Edit, Copy and Delete links" msgstr "它们是编辑、复制和删除链接" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "表中每行数据操作链接位置" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "为数据库和数据表名使用自然排序" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "自然排序" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "仅使用图标、文本或都使用" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "导航条显示" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "使用 GZip 输出缓冲以加快 HTTP 传输速度" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip 输出缓冲" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4225,42 +4213,42 @@ msgstr "" "[kbd]SMART[/kbd] - 如:对 TIME、DATE、DATETIME 和 TIMESTAMP 类型的字段递减排" "序,其他字段递增" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "默认排序" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "在连接到 MySQL 数据库时使用持久连接" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "持久连接" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "禁止在缺少 phpMyAdmin 高级功能所需数据表时在数据库结构页中显示默认警告" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "丢失 phpMyAdmin 高级功能数据表" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "数据表操作显示" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "禁止编辑 BLOB 和 BINARY 类型字段" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "保护二进制字段" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4269,119 +4257,119 @@ msgstr "" "允许使用基于数据库的查询历史 (需要 phpMyAdmin 高级功能)。如果禁用,将使用 " "JS 程序来显示查询历史 (关闭窗口即丢失)。" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "持久查询历史" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "记录查询历史的数量" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "查询历史个数" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "打开一个新查询窗口时默认显示的页面" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "默认查询窗口标签" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "查询窗口高度 (单位:像素)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "查询窗口高度" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "查询窗口宽度 (单位:像素)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "查询窗口宽度" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "选择进行字符集转换时使用的函数" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "记录引擎" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "当浏览表时,会记住每个表的排序方式" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "记录表排序" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "每 X 单元格重复表头,要禁止此功能请设为 [kbd]0[/kbd]" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "重复表头" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "显示帮助按钮代替文档文本" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "显示帮助按钮" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "服务器上用来保存导出文件的文件夹" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "保存文件夹" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "不使用请留空" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "主机认证模式" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "默认请留空" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "主机认证规则" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "允许空密码登录" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "允许 root 用户登录" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "使用 HTTP 基本认证时显示给用户的提示信息" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP 提示信息" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4390,19 +4378,19 @@ msgstr "" "[a@http://swekey.com]SweKey 硬件认证 (外链,英文)[/a]的配置文件路径 (请勿置于" "你的文档根文件夹,推荐使用:/etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey 配置文件" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "要使用的认证方式" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "认证方式" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4410,41 +4398,41 @@ msgstr "" "不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]书签 (外链,英文)[/a]功能请" "留空,推荐: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "书签表" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "留空则不使用列信息和MIME类型。推荐: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "列信息表" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "压缩连接到 MySQL 服务器" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "压缩连接" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "怎样连接到服务器,如果不确定,请选择 tcp" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "连接方式" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "控制用户的密码" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4452,29 +4440,29 @@ msgstr "" "一个特殊的被限制权限的 MySQL 用户,参见 [a@http://wiki.phpmyadmin.net/pma/" "controluser]wiki (外链,英文)[/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "控制用户" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "显示数据库列表时计算数据表的数量" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "统计数据表" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "不使用设计功能请留空,推荐: [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "设计表" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4483,69 +4471,69 @@ msgstr "" "统 (外链,英文)[/a] 和 [a@http://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外" "链,英文)[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "禁止使用 INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "要使用的 PHP 扩展,如果支持,推荐使用 mysqli。" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "要使用的 PHP 扩展" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "该正则表达式 (PCRE,Perl 兼容) 所匹配的数据库将被隐藏" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "隐藏数据库" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "不使用 SQL 查询历史功能请留空,推荐: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL 查询历史表" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "MySQL 服务器的主机名" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "服务器主机名" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "退出地址" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "在数据表列表中最多显示的数据表个数" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "尝试用空密码连接" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "用空密码连接" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4557,28 +4545,28 @@ msgstr "" "\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。通过该选项你可以对数据库列表排序,只" "需按顺序输入它们的名称并加上 [kbd]*[/kbd],剩下的数据库将按字母顺序排在最后。" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "仅显示列出的数据库" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "如果不使用 config 认证方式,请留空" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "config 认证方式的密码" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "不使用 PDF 大纲功能请留空,推荐: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF 大纲: 数据表页" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4587,29 +4575,29 @@ msgstr "" "关系、书签、PDF 功能所用的数据库。参见 [a@http://wiki.phpmyadmin.net/pma/" "pmadb]pmadb (外链,英文)[/a]。不使用请留空。推荐: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "数据库名" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "MySQL 服务器监听的端口,留空为默认" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "服务器端口" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "不需要 \"持久\" 最近使用的表请留空,推荐: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 msgid "Recently used table" msgstr "最近使用的表" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4617,19 +4605,19 @@ msgstr "" "不使用[a@http://wiki.phpmyadmin.net/pma/relation]关系链接 (外链,英文)[/a]功" "能请留空,推荐: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "关系表" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "取得所有可用数据库的 SQL 语句" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "显示数据库(SHOW DATABASES)命令" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4637,118 +4625,118 @@ msgstr "" "参见[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]认证方式 (外链,英文)" "[/a]中的例子" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Signon 会话名" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "登录地址" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL 服务器监听的套接字,留空为默认" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "服务器套接字 (socket)" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "使用 SSL 连接到 MySQL 服务器" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "使用 SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "不使用 PDF 大纲功能请留空,推荐: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF 大纲: 数据表并发" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "描述显示字段的表,不使用请留空,推荐: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "显示字段表" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "不需要 \"持久\" 表界面设置请留空,推荐: [kbd]pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 msgid "UI preferences table" msgstr "界面设置表" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "设置当记录数据库创建时,是否在前面加上 DROP DATABASE IF EXISTS 命令。" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "添加 DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "设置当记录数据表创建时,是否在前面加上 DROP TABLE IF EXISTS 命令。" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "添加 DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "设置当记录视图创建时,是否在前面加上 DROP VIEW IF EXISTS 命令。" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "添加 DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "定义自动创建新版的命令列表。" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "要追踪的命令" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "不使用 SQL 查询追踪功能请留空,推荐: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "SQL 查询追踪表" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "设置追踪系统是否自动为数据表和视图创建版本。" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "自动创建版本" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4758,43 +4746,43 @@ msgid "" "pma_userconfig[/kbd]" msgstr "不在数据库中保存用户偏好请留空,推荐: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "用户偏好表" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "config 认证方式的用户名" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "如果你确定 pma_* 数据表都是最新的,可以禁用此项。此功能提供兼容性检查" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "详细检查" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "一个好记的名字。留空将显示主机名。" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "服务器名称" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "设置是否给用户显示一个 "显示所有 (记录)" 的按钮" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "允许显示所有行" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4803,99 +4791,99 @@ msgstr "" "注意:该选项不影响 [kbd]config[/kbd] 认证方式,因为密码是保存在配置文件中,该" "选项也不限制直接执行可实现相同功能的命令。" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "显示修改密码" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "显示创建数据库表单" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "默认显示模式" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "定义在编辑/插入模式中是否显示字段类型一列" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "显示字段类型" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "在编辑/插入模式中显示函数列" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "显示函数列" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 #, fuzzy #| msgid "Where to show the table row links" msgid "Whether to show hint or not" msgstr "表中每行数据操作链接位置" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show indexes" msgid "Show hint" msgstr "显示索引" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" "显示 [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] 输出的链接" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "显示 phpinfo() 链接" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "显示 MySQL 服务器详细信息" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "定义是否显示 phpMyAdmin 生成的 SQL 查询" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "显示 SQL 查询" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "允许显示数据库和数据表的统计信息 (如:空间使用)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "显示统计" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" "如果启用了悬停提示且设置了数据库备注,这里将简略显示数据库备注和数据库名" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "显示数据库的备注而不显示数据库名" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4906,28 +4894,28 @@ msgstr "" "['LeftFrameTableSeparator'] 作分割/层叠用,所有只有目录的名字像别名,数据表自" "己的名字并不改变" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "显示表备注而不显示表名" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "悬停时显示表备注" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "将已锁定的数据表在数据库中显示为使用中" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "跳过锁定的表" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "需要启用 SQL 校验器" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -4937,47 +4925,47 @@ msgstr "需要启用 SQL 校验器" msgid "Password" msgstr "密码" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "[strong]警告:[/strong]需要安装 PHP SOAP 扩展或 PEAR SOAP" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "启用 SQL 校验器" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" "如果你有自己的用户名,请在这里输入 (默认为 [kbd]anonymous (匿名)[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "用户名" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "如果可能,在 "新建数据库" 表单中建议一个名字,或留空" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "建议新数据库名" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "若检测到 Suhosin 将在主页显示一个警告" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin 警告" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4985,11 +4973,11 @@ msgstr "" "编辑模式的文本框大小 (列数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 " "(*1.25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "文本框列" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4997,31 +4985,31 @@ msgstr "" "编辑模式的文本框大小 (行数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 " "(*1.25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "文本框行" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "选中一个数据库时浏览器窗口的标题" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "未选择时浏览器窗口的标题" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "默认标题" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "选中一个服务器时浏览器窗口的标题" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "选中一张数据表时浏览器窗口的标题" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5032,37 +5020,37 @@ msgstr "" "信任从代理 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd] 发来的 " "HTTP_X_FORWARDED_FOR 头" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "可信代理IP列表" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "服务器上用来存放导入文件的文件夹" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "上传文件夹" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "允许搜索整个数据库" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "使用数据库搜索" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "禁用时,用户不能设置下列选项,右侧的复选框被忽略" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "启用设置中的开发标签" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5071,19 +5059,19 @@ msgstr "" "在进行多个语句查询时,显示每个语句所影响的行数。默认一次查询可以包含的查询语" "句数可以在 libraries/import.lib.php 中找到。" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "为多个语句输出更多信息" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "检查更新" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "允许在 phpMyAdmin 主页面中检查最新版本" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5091,7 +5079,7 @@ msgstr "允许在 phpMyAdmin 主页面中检查最新版本" msgid "Version check" msgstr "检查更新" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5099,7 +5087,7 @@ msgstr "" "允许在导入和导出时使用 [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP " "(外链,英文)[/a] 压缩" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5119,47 +5107,47 @@ msgstr "HTTP 认证" msgid "Signon authentication" msgstr "Signon 认证" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV 使用 LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "OpenOffice 表格" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "快速" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "自定义" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "数据库导出选项" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "OpenOffice 文档" @@ -5333,9 +5321,8 @@ msgstr "新建数据表" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "名字" @@ -5673,7 +5660,7 @@ msgid "Hide" msgstr "隐藏" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "浏览器转换" @@ -6559,7 +6546,7 @@ msgstr "CSV 输入的第 %d 行字段数有错。" msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "数据表名" @@ -7243,7 +7230,7 @@ msgstr "参数" msgid "Direction" msgstr "方向" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "长度/值" @@ -7498,7 +7485,7 @@ msgstr "目录" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "属性" @@ -7787,7 +7774,7 @@ msgstr "数据表是空的!" msgid "Tracking of %s.%s is activated." msgstr "%s.%s 的追踪已启用。" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7797,30 +7784,30 @@ msgstr "" "如字段类型是“enum”或“set”,请使用以下格式输入:'a','b','c'...
如果需要输" "入反斜杠(“\\”)或单引号(“'”),请在前面加上反斜杠(如 '\\\\xyz' 或 'a\\'b')。" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "对于默认值,请只输入单个值,不要加反斜杠或引号,请用此格式:a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "索引" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "要获得可用转换选项的列表及对应的 MIME 类型转换,请点击%s转换说明%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "转换选项" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -7830,59 +7817,59 @@ msgstr "" "请使用此格式输入转换选项的值:'a',100,b,'c'...
如果您需要在值中输入反斜" "杠 (“\\”)或单引号(“'”),请在前面加上反斜杠 (如 '\\\\xyz' 或 'a\\'b')。" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "ENUM 或 SET 数据过长?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "获取更多编辑空间" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "无" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "定义:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "主键" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "全文搜索" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "此转换没有说明。
详细功能请询问 %s 的作者。" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "添加 %s 个字段" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "至少要添加一个字段。" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "存储引擎" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "分区定义" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 msgid "+ Add a value" msgstr "+ 添加" @@ -12598,6 +12585,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal (水平)[/kbd]、[kbd]vertical (垂直)[/kbd] 或限定使用垂直模" +#~ "式的最大数值" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "修改/新建字段时的显示模式" + #~ msgid "Create table on database %s" #~ msgstr "在数据库 %s 中新建一张数据表" diff --git a/po/zh_TW.po b/po/zh_TW.po index 415ec8da1c..50e0862599 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ 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-10-07 07:59-0400\n" +"POT-Creation-Date: 2011-10-08 06:43-0400\n" "PO-Revision-Date: 2011-06-19 09:59+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" @@ -65,7 +65,7 @@ msgstr "搜尋" #: libraries/schema/User_Schema.class.php:486 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:348 #: libraries/sql_query_form.lib.php:410 libraries/sql_query_form.lib.php:463 -#: libraries/tbl_properties.inc.php:587 libraries/tbl_properties.inc.php:758 +#: libraries/tbl_properties.inc.php:573 libraries/tbl_properties.inc.php:723 #: main.php:107 navigation.php:171 navigation.php:209 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:744 server_privileges.php:1784 @@ -127,7 +127,7 @@ msgid "Database comment: " msgstr "資料庫註釋:" #: db_datadict.php:153 libraries/schema/Pdf_Relation_Schema.class.php:1279 -#: libraries/tbl_properties.inc.php:695 tbl_operations.php:366 +#: libraries/tbl_properties.inc.php:660 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" msgstr "表註釋" @@ -137,7 +137,7 @@ msgstr "表註釋" #: libraries/export/odt.php:286 libraries/export/texytext.php:228 #: libraries/schema/Pdf_Relation_Schema.class.php:1305 #: libraries/schema/Pdf_Relation_Schema.class.php:1326 -#: libraries/tbl_properties.inc.php:281 libraries/tbl_select.lib.php:83 +#: libraries/tbl_properties.inc.php:267 libraries/tbl_select.lib.php:83 #: tbl_change.php:318 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:395 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:434 @@ -153,7 +153,7 @@ msgstr "欄位" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1306 #: libraries/schema/Pdf_Relation_Schema.class.php:1327 -#: libraries/tbl_properties.inc.php:107 libraries/tbl_select.lib.php:84 +#: libraries/tbl_properties.inc.php:93 libraries/tbl_select.lib.php:84 #: server_privileges.php:2251 tbl_change.php:297 tbl_change.php:324 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:202 #: tbl_structure.php:765 tbl_tracking.php:258 tbl_tracking.php:305 @@ -165,7 +165,7 @@ msgstr "類型" #: libraries/export/odt.php:292 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1308 #: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:116 tbl_change.php:333 +#: libraries/tbl_properties.inc.php:102 tbl_change.php:333 #: tbl_printview.php:139 tbl_structure.php:205 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:435 msgid "Null" @@ -176,7 +176,7 @@ msgstr "空" #: libraries/export/texytext.php:231 #: libraries/schema/Pdf_Relation_Schema.class.php:1309 #: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:113 tbl_printview.php:140 +#: libraries/tbl_properties.inc.php:99 tbl_printview.php:140 #: tbl_structure.php:206 tbl_tracking.php:261 msgid "Default" msgstr "預設" @@ -190,13 +190,13 @@ msgid "Links to" msgstr "連結到" #: db_datadict.php:172 db_printview.php:109 -#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:109 -#: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:257 +#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107 +#: libraries/config/messages.inc.php:129 libraries/export/htmlword.php:257 #: libraries/export/latex.php:364 libraries/export/odt.php:304 #: libraries/export/texytext.php:236 #: libraries/schema/Pdf_Relation_Schema.class.php:1322 #: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:136 tbl_printview.php:146 +#: libraries/tbl_properties.inc.php:122 tbl_printview.php:146 msgid "Comments" msgstr "註釋" @@ -310,14 +310,14 @@ msgstr "僅資料" msgid "CREATE DATABASE before copying" msgstr "複製前建立資料庫 (CREATE DATABASE)" -#: db_operations.php:498 libraries/config/messages.inc.php:126 -#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129 -#: libraries/config/messages.inc.php:135 tbl_operations.php:560 +#: db_operations.php:498 libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127 +#: libraries/config/messages.inc.php:133 tbl_operations.php:560 #, php-format msgid "Add %s" msgstr "新增 %s" -#: db_operations.php:502 libraries/config/messages.inc.php:119 +#: db_operations.php:502 libraries/config/messages.inc.php:117 #: tbl_operations.php:318 tbl_operations.php:562 msgid "Add AUTO_INCREMENT value" msgstr "新增自動遞增(AUTO_INCREMENT)數值" @@ -332,8 +332,8 @@ msgstr "切換到複製的資料庫" #: db_operations.php:542 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 -#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:114 -#: libraries/tbl_properties.inc.php:701 libraries/tbl_select.lib.php:85 +#: libraries/mysql_charsets.lib.php:113 libraries/tbl_properties.inc.php:100 +#: libraries/tbl_properties.inc.php:666 libraries/tbl_select.lib.php:85 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:203 tbl_structure.php:870 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -352,7 +352,7 @@ msgid "Edit or export relational schema" msgstr "編輯或匯出關聯大綱" #: db_printview.php:101 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:504 libraries/db_structure.lib.php:32 +#: libraries/config/messages.inc.php:502 libraries/db_structure.lib.php:32 #: libraries/export/pdf.php:95 libraries/export/xml.php:359 #: libraries/header.inc.php:161 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 @@ -662,7 +662,7 @@ msgid "Check tables having overhead" msgstr "僅選擇多餘" #: db_structure.php:554 libraries/common.lib.php:3313 -#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:164 +#: libraries/common.lib.php:3314 libraries/config/messages.inc.php:162 #: libraries/db_links.inc.php:56 libraries/display_export.lib.php:79 #: libraries/display_tbl.lib.php:2506 libraries/display_tbl.lib.php:2647 #: libraries/server_links.inc.php:65 libraries/tbl_links.inc.php:80 @@ -724,7 +724,7 @@ msgstr "資料字典" msgid "Tracked tables" msgstr "已追蹤的表" -#: db_tracking.php:84 libraries/config/messages.inc.php:498 +#: db_tracking.php:84 libraries/config/messages.inc.php:496 #: libraries/export/htmlword.php:78 libraries/export/latex.php:151 #: libraries/export/odt.php:109 libraries/export/pdf.php:95 #: libraries/export/sql.php:602 libraries/export/texytext.php:66 @@ -799,12 +799,12 @@ msgstr "追蹤資料表" msgid "Database Log" msgstr "資料庫日誌" -#: enum_editor.php:21 libraries/tbl_properties.inc.php:754 +#: enum_editor.php:21 libraries/tbl_properties.inc.php:719 #, php-format msgid "Values for the column \"%s\"" msgstr "%s 欄位的值" -#: enum_editor.php:22 libraries/tbl_properties.inc.php:755 +#: enum_editor.php:22 libraries/tbl_properties.inc.php:720 msgid "Enter each value in a separate field." msgstr "請將資料填入以下欄位" @@ -1140,7 +1140,7 @@ msgstr "重新載入權限" msgid "Removing Selected Users" msgstr "正在刪除選中的使用者" -#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:753 +#: js/messages.php:61 js/messages.php:130 libraries/tbl_properties.inc.php:718 #: tbl_tracking.php:235 tbl_tracking.php:400 msgid "Close" msgstr "關閉" @@ -1148,7 +1148,7 @@ msgstr "關閉" #: js/messages.php:64 js/messages.php:250 libraries/Index.class.php:460 #: libraries/common.lib.php:641 libraries/common.lib.php:1190 #: libraries/common.lib.php:3311 libraries/common.lib.php:3312 -#: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1380 +#: libraries/config/messages.inc.php:476 libraries/display_tbl.lib.php:1380 #: libraries/schema/User_Schema.class.php:196 setup/frames/index.inc.php:138 msgid "Edit" msgstr "編輯" @@ -1386,7 +1386,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:565 libraries/export/sql.php:1092 -#: libraries/tbl_properties.inc.php:539 pmd_general.php:504 +#: libraries/tbl_properties.inc.php:525 pmd_general.php:504 #: server_privileges.php:2046 server_status.php:1257 server_status.php:1686 #: tbl_zoom_select.php:151 tbl_zoom_select.php:278 msgid "None" @@ -1615,7 +1615,7 @@ msgid "" "config..." msgstr "" -#: js/messages.php:190 libraries/config/messages.inc.php:170 +#: js/messages.php:190 libraries/config/messages.inc.php:168 #: libraries/db_links.inc.php:82 libraries/display_import.lib.php:126 #: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89 #: prefs_manage.php:229 server_status.php:1589 setup/frames/menu.inc.php:20 @@ -1666,7 +1666,7 @@ msgstr "" msgid "Test" msgstr "" -#: js/messages.php:208 libraries/tbl_properties.inc.php:758 +#: js/messages.php:208 libraries/tbl_properties.inc.php:723 #: pmd_general.php:382 pmd_general.php:419 pmd_general.php:539 #: pmd_general.php:587 pmd_general.php:663 pmd_general.php:717 #: pmd_general.php:780 @@ -1799,7 +1799,7 @@ msgstr "最長執行時間" #: js/messages.php:256 libraries/config/FormDisplay.tpl.php:355 #: libraries/schema/User_Schema.class.php:351 -#: libraries/tbl_properties.inc.php:747 setup/frames/config.inc.php:39 +#: libraries/tbl_properties.inc.php:712 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:1018 #: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:559 msgid "Save" @@ -2324,7 +2324,7 @@ msgstr "沒有已定義的索引!" msgid "Indexes" msgstr "索引" -#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:481 +#: libraries/Index.class.php:434 libraries/tbl_properties.inc.php:467 #: tbl_structure.php:154 tbl_structure.php:159 tbl_structure.php:576 #: tbl_tracking.php:306 msgid "Unique" @@ -2360,7 +2360,7 @@ msgid "" "removed." msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除" -#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:104 #: server_privileges.php:1830 msgid "Databases" @@ -2661,18 +2661,18 @@ msgid "shared" msgstr "已共享" #: libraries/build_html_for_db.lib.php:26 -#: libraries/config/messages.inc.php:183 libraries/export/xml.php:51 +#: libraries/config/messages.inc.php:181 libraries/export/xml.php:51 #: server_status.php:590 msgid "Tables" msgstr "資料表" -#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:302 -#: libraries/config/setup.forms.php:338 libraries/config/setup.forms.php:361 -#: libraries/config/setup.forms.php:366 -#: libraries/config/user_preferences.forms.php:201 -#: libraries/config/user_preferences.forms.php:237 -#: libraries/config/user_preferences.forms.php:260 -#: libraries/config/user_preferences.forms.php:265 +#: libraries/build_html_for_db.lib.php:36 libraries/config/setup.forms.php:301 +#: libraries/config/setup.forms.php:337 libraries/config/setup.forms.php:360 +#: libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:200 +#: libraries/config/user_preferences.forms.php:236 +#: libraries/config/user_preferences.forms.php:259 +#: libraries/config/user_preferences.forms.php:264 #: libraries/export/latex.php:201 libraries/export/sql.php:1092 #: server_privileges.php:612 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:771 @@ -2746,7 +2746,7 @@ msgstr "無效的伺服器索引: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "伺服器 %1$s 主機名稱錯誤, 請檢查設定檔案." -#: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 +#: libraries/common.inc.php:656 libraries/config/messages.inc.php:500 #: libraries/header.inc.php:134 main.php:160 server_status.php:775 #: server_synchronize.php:1257 msgid "Server" @@ -2818,7 +2818,7 @@ msgstr "MySQL 返回:" msgid "Failed to connect to SQL validator!" msgstr "連線到 SQL 檢驗器失敗!" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:477 msgid "Explain SQL" msgstr "SQL說明 " @@ -2830,11 +2830,11 @@ msgstr "略過SQL說明 " msgid "Without PHP Code" msgstr "無 PHP 程式碼" -#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1206 libraries/config/messages.inc.php:479 msgid "Create PHP Code" msgstr "建立 PHP 程式碼" -#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1225 libraries/config/messages.inc.php:478 #: server_status.php:786 server_status.php:808 server_status.php:827 msgid "Refresh" msgstr "重新整理" @@ -2843,7 +2843,7 @@ msgstr "重新整理" msgid "Skip Validate SQL" msgstr "略過檢驗 SQL" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:481 msgid "Validate SQL" msgstr "檢驗 SQL" @@ -2960,20 +2960,20 @@ msgid "Click to toggle" msgstr "點擊選取" #: libraries/common.lib.php:3084 libraries/common.lib.php:3091 -#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:293 -#: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 -#: libraries/config/user_preferences.forms.php:192 -#: libraries/config/user_preferences.forms.php:229 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/common.lib.php:3306 libraries/config/setup.forms.php:292 +#: libraries/config/setup.forms.php:329 libraries/config/setup.forms.php:355 +#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/user_preferences.forms.php:228 +#: libraries/config/user_preferences.forms.php:254 #: libraries/db_links.inc.php:48 libraries/export/latex.php:336 #: libraries/import.lib.php:1125 libraries/tbl_links.inc.php:61 -#: libraries/tbl_properties.inc.php:603 pmd_general.php:140 +#: libraries/tbl_properties.inc.php:589 pmd_general.php:140 #: server_privileges.php:612 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "結構" #: libraries/common.lib.php:3085 libraries/common.lib.php:3092 -#: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 +#: libraries/config/messages.inc.php:212 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 #: querywindow.php:64 @@ -3172,7 +3172,7 @@ msgid "Set value: %s" msgstr "設定值: %s" #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "還原預設值" @@ -3327,306 +3327,294 @@ msgid "Default display direction" msgstr "預設顯示模式" #: libraries/config/messages.inc.php:46 -msgid "" -"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " -"maximum number for which vertical model is used" -msgstr "" -"[kbd]horizontal (水平)[/kbd]、[kbd]vertical (垂直)[/kbd] 或限定使用垂直模式的" -"最大數值" - -#: libraries/config/messages.inc.php:47 -msgid "Display direction for altering/creating columns" -msgstr "修改/建立欄位時的顯示模式" - -#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" msgstr "在進入資料庫標籤時預設顯示的頁面" -#: libraries/config/messages.inc.php:49 +#: libraries/config/messages.inc.php:47 msgid "Default database tab" msgstr "預設資料庫頁籤" -#: libraries/config/messages.inc.php:50 +#: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a server" msgstr "在進入伺服器標籤時預設顯示的頁面" -#: libraries/config/messages.inc.php:51 +#: libraries/config/messages.inc.php:49 msgid "Default server tab" msgstr "預設伺服器標籤" -#: libraries/config/messages.inc.php:52 +#: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a table" msgstr "在進入資料表標籤時預設顯示的頁面" -#: libraries/config/messages.inc.php:53 +#: libraries/config/messages.inc.php:51 msgid "Default table tab" msgstr "預設資料表標籤" -#: libraries/config/messages.inc.php:54 +#: libraries/config/messages.inc.php:52 msgid "Show binary contents as HEX by default" msgstr "預設以十六進制顯示二進制內容" -#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:671 +#: libraries/config/messages.inc.php:53 libraries/display_tbl.lib.php:671 msgid "Show binary contents as HEX" msgstr "以十六進制顯示二進制內容" -#: libraries/config/messages.inc.php:56 +#: libraries/config/messages.inc.php:54 msgid "Show database listing as a list instead of a drop down" msgstr "直接顯示資料庫列表而不使用下拉選單" -#: libraries/config/messages.inc.php:57 +#: libraries/config/messages.inc.php:55 msgid "Display databases as a list" msgstr "顯示資料庫爲列表" -#: libraries/config/messages.inc.php:58 +#: libraries/config/messages.inc.php:56 msgid "Show server listing as a list instead of a drop down" msgstr "直接顯示伺服器列表而不使用下拉選單" -#: libraries/config/messages.inc.php:59 +#: libraries/config/messages.inc.php:57 msgid "Display servers as a list" msgstr "顯示伺服器爲列表" -#: libraries/config/messages.inc.php:60 +#: libraries/config/messages.inc.php:58 msgid "" "Disable the table maintenance mass operations, like optimizing or repairing " "the selected tables of a database." msgstr "" -#: libraries/config/messages.inc.php:61 +#: libraries/config/messages.inc.php:59 #, fuzzy #| msgid "Table maintenance" msgid "Disable multi table maintenance" msgstr "表維護" -#: libraries/config/messages.inc.php:62 +#: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" msgstr "在新視窗中編輯 SQL 查詢" -#: libraries/config/messages.inc.php:63 +#: libraries/config/messages.inc.php:61 msgid "Edit in window" msgstr "在視窗中編輯" -#: libraries/config/messages.inc.php:64 +#: libraries/config/messages.inc.php:62 msgid "Display errors" msgstr "顯示錯誤" -#: libraries/config/messages.inc.php:65 +#: libraries/config/messages.inc.php:63 msgid "Gather errors" msgstr "收集錯誤" -#: libraries/config/messages.inc.php:66 +#: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" msgstr "在警告、錯誤和資訊上顯示圖示" -#: libraries/config/messages.inc.php:67 +#: libraries/config/messages.inc.php:65 msgid "Iconic errors" msgstr "錯誤圖示" -#: libraries/config/messages.inc.php:68 +#: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" msgstr "設定指令最大運行時間 (單位:秒,[kbd]0[/kbd] 爲不限制)" -#: libraries/config/messages.inc.php:69 +#: libraries/config/messages.inc.php:67 msgid "Maximum execution time" msgstr "最長執行時間" -#: libraries/config/messages.inc.php:70 prefs_manage.php:297 +#: libraries/config/messages.inc.php:68 prefs_manage.php:297 msgid "Save as file" msgstr "另存檔案" -#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" msgstr "檔案字集" -#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 +#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:840 msgid "Format" msgstr "格式" -#: libraries/config/messages.inc.php:73 +#: libraries/config/messages.inc.php:71 msgid "Compression" msgstr "壓縮" -#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:81 -#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:93 -#: libraries/config/messages.inc.php:106 libraries/config/messages.inc.php:108 -#: libraries/config/messages.inc.php:141 libraries/config/messages.inc.php:144 -#: libraries/config/messages.inc.php:146 libraries/export/csv.php:30 +#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:79 +#: libraries/config/messages.inc.php:87 libraries/config/messages.inc.php:91 +#: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:106 +#: libraries/config/messages.inc.php:139 libraries/config/messages.inc.php:142 +#: libraries/config/messages.inc.php:144 libraries/export/csv.php:30 #: libraries/export/excel.php:25 libraries/export/htmlword.php:30 #: libraries/export/latex.php:72 libraries/export/ods.php:25 #: libraries/export/odt.php:58 libraries/export/texytext.php:28 msgid "Put columns names in the first row" msgstr "首行儲存欄位名稱" -#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241 -#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76 +#: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 +#: libraries/config/messages.inc.php:246 libraries/import/csv.php:76 #: libraries/import/ldi.php:42 msgid "Columns enclosed by" msgstr "「欄位」分隔字元:" -#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242 -#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81 +#: libraries/config/messages.inc.php:74 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:247 libraries/import/csv.php:81 #: libraries/import/ldi.php:43 msgid "Columns escaped by" msgstr "跳脫字元使用:" -#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:83 -#: libraries/config/messages.inc.php:90 libraries/config/messages.inc.php:99 -#: libraries/config/messages.inc.php:107 libraries/config/messages.inc.php:111 -#: libraries/config/messages.inc.php:142 libraries/config/messages.inc.php:145 -#: libraries/config/messages.inc.php:147 libraries/export/texytext.php:27 +#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:81 +#: libraries/config/messages.inc.php:88 libraries/config/messages.inc.php:97 +#: libraries/config/messages.inc.php:105 libraries/config/messages.inc.php:109 +#: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 +#: libraries/config/messages.inc.php:145 libraries/export/texytext.php:27 msgid "Replace NULL by" msgstr "將 NULL 替換爲" -#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84 +#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" msgstr "刪除欄位中的回車換行符號" -#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245 -#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63 +#: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 +#: libraries/config/messages.inc.php:251 libraries/import/csv.php:63 #: libraries/import/ldi.php:41 msgid "Columns terminated by" msgstr "欄位內容換行使用字元:" -#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240 +#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:238 #: libraries/import/csv.php:86 libraries/import/ldi.php:44 msgid "Lines terminated by" msgstr "資料分行使用字元:" -#: libraries/config/messages.inc.php:82 +#: libraries/config/messages.inc.php:80 msgid "Excel edition" msgstr "Excel 版本" -#: libraries/config/messages.inc.php:85 +#: libraries/config/messages.inc.php:83 msgid "Database name template" msgstr "資料庫名稱樣式" -#: libraries/config/messages.inc.php:86 +#: libraries/config/messages.inc.php:84 msgid "Server name template" msgstr "伺服器名稱樣式" -#: libraries/config/messages.inc.php:87 +#: libraries/config/messages.inc.php:85 msgid "Table name template" msgstr "資料表名稱樣式" -#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104 -#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137 -#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24 +#: libraries/config/messages.inc.php:89 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:111 libraries/config/messages.inc.php:135 +#: libraries/config/messages.inc.php:141 libraries/export/htmlword.php:24 #: libraries/export/latex.php:40 libraries/export/odt.php:32 #: libraries/export/sql.php:123 libraries/export/texytext.php:23 msgid "Dump table" msgstr "轉存資料表" -#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32 +#: libraries/config/messages.inc.php:90 libraries/export/latex.php:32 msgid "Include table caption" msgstr "包含表的標題" -#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 +#: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:50 libraries/export/latex.php:74 msgid "Table caption" msgstr "表的標題" -#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:102 +#: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" msgstr "換頁時延續資料表標題" -#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103 +#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:54 libraries/export/latex.php:78 msgid "Label key" msgstr "關鍵標籤" -#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 -#: libraries/config/messages.inc.php:134 libraries/export/odt.php:310 -#: libraries/tbl_properties.inc.php:149 +#: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 +#: libraries/config/messages.inc.php:132 libraries/export/odt.php:310 +#: libraries/tbl_properties.inc.php:135 msgid "MIME type" msgstr "MIME 類型" -#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112 -#: libraries/config/messages.inc.php:136 tbl_relation.php:392 +#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110 +#: libraries/config/messages.inc.php:134 tbl_relation.php:392 msgid "Relations" msgstr "關聯" -#: libraries/config/messages.inc.php:105 +#: libraries/config/messages.inc.php:103 msgid "Export method" msgstr "匯出方式" -#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116 +#: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" msgstr "儲存在伺服器上" -#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117 +#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:190 libraries/display_export.lib.php:216 msgid "Overwrite existing file(s)" msgstr "覆蓋已有檔案" -#: libraries/config/messages.inc.php:118 +#: libraries/config/messages.inc.php:116 msgid "Remember file name template" msgstr "記錄樣板檔案名稱" -#: libraries/config/messages.inc.php:120 +#: libraries/config/messages.inc.php:118 msgid "Enclose table and column names with backquotes" msgstr "在資料表名稱及欄位名稱使用反引號(`)" -#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:348 msgid "SQL compatibility mode" msgstr "SQL 相容模式" -#: libraries/config/messages.inc.php:122 libraries/export/sql.php:190 +#: libraries/config/messages.inc.php:120 libraries/export/sql.php:190 msgid "CREATE TABLE options:" msgstr "CREATE TABLE 選項:" -#: libraries/config/messages.inc.php:123 +#: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" msgstr "建立/更新/檢查日期" -#: libraries/config/messages.inc.php:124 +#: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" msgstr "使用延遲插入" -#: libraries/config/messages.inc.php:125 libraries/export/sql.php:81 +#: libraries/config/messages.inc.php:123 libraries/export/sql.php:81 msgid "Disable foreign key checks" msgstr "關閉外鍵 (Foreign Key) 檢查" -#: libraries/config/messages.inc.php:128 +#: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" msgstr "爲 BLOB 欄位使用16進制 (HEX)" -#: libraries/config/messages.inc.php:130 +#: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" msgstr "使用忽略錯誤的新增 (insert)" -#: libraries/config/messages.inc.php:132 +#: libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" msgstr "在插入資料時使用的語法" -#: libraries/config/messages.inc.php:133 libraries/export/sql.php:285 +#: libraries/config/messages.inc.php:131 libraries/export/sql.php:285 msgid "Maximal length of created query" msgstr "建立查詢指令最大長度" -#: libraries/config/messages.inc.php:138 +#: libraries/config/messages.inc.php:136 msgid "Export type" msgstr "輸出類型" -#: libraries/config/messages.inc.php:139 libraries/export/sql.php:73 +#: libraries/config/messages.inc.php:137 libraries/export/sql.php:73 msgid "Enclose export in a transaction" msgstr "使用封裝輸出方式" -#: libraries/config/messages.inc.php:140 +#: libraries/config/messages.inc.php:138 msgid "Export time in UTC" msgstr "以協和標準時間 (UTC) 輸出時間" -#: libraries/config/messages.inc.php:148 +#: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" msgstr "強制使用安全連線訪問 phpMyAdmin" -#: libraries/config/messages.inc.php:149 +#: libraries/config/messages.inc.php:147 msgid "Force SSL connection" msgstr "強制 SSL 連線" -#: libraries/config/messages.inc.php:150 +#: libraries/config/messages.inc.php:148 msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" @@ -3634,148 +3622,148 @@ msgstr "" "外部鍵下拉選單中選項的排序順序,[kbd]content[/kbd] 爲關聯內容,[kbd]id[/kbd] " "爲鍵值" -#: libraries/config/messages.inc.php:151 +#: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" msgstr "外部鍵下拉選單順序" -#: libraries/config/messages.inc.php:152 +#: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" msgstr "下拉選單中選項個數的限制" -#: libraries/config/messages.inc.php:153 +#: libraries/config/messages.inc.php:151 msgid "Foreign key limit" msgstr "外部鍵限制" -#: libraries/config/messages.inc.php:154 +#: libraries/config/messages.inc.php:152 msgid "Browse mode" msgstr "瀏覽模式" -#: libraries/config/messages.inc.php:155 +#: libraries/config/messages.inc.php:153 msgid "Customize browse mode" msgstr "自訂瀏覽模式" -#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159 -#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187 -#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217 -#: libraries/config/messages.inc.php:229 +#: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 +#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 +#: libraries/config/messages.inc.php:187 libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:227 msgid "Customize default options" msgstr "自定預設選項" -#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:240 -#: libraries/config/setup.forms.php:313 -#: libraries/config/user_preferences.forms.php:141 -#: libraries/config/user_preferences.forms.php:212 libraries/export/csv.php:19 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:239 +#: libraries/config/setup.forms.php:312 +#: libraries/config/user_preferences.forms.php:140 +#: libraries/config/user_preferences.forms.php:211 libraries/export/csv.php:19 #: libraries/import/csv.php:22 msgid "CSV" msgstr "CSV" -#: libraries/config/messages.inc.php:160 +#: libraries/config/messages.inc.php:158 msgid "Developer" msgstr "開發" -#: libraries/config/messages.inc.php:161 +#: libraries/config/messages.inc.php:159 msgid "Settings for phpMyAdmin developers" msgstr "phpMyAdmin 開發設定" -#: libraries/config/messages.inc.php:162 +#: libraries/config/messages.inc.php:160 msgid "Edit mode" msgstr "編輯模式" -#: libraries/config/messages.inc.php:163 +#: libraries/config/messages.inc.php:161 msgid "Customize edit mode" msgstr "自訂編輯模式" -#: libraries/config/messages.inc.php:165 +#: libraries/config/messages.inc.php:163 msgid "Export defaults" msgstr "匯出選項" -#: libraries/config/messages.inc.php:166 +#: libraries/config/messages.inc.php:164 msgid "Customize default export options" msgstr "自訂匯出選項的預設值" -#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209 +#: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 msgid "Features" msgstr "功能" -#: libraries/config/messages.inc.php:168 +#: libraries/config/messages.inc.php:166 msgid "General" msgstr "一般" -#: libraries/config/messages.inc.php:169 +#: libraries/config/messages.inc.php:167 msgid "Set some commonly used options" msgstr "設定某些常用選項" -#: libraries/config/messages.inc.php:171 +#: libraries/config/messages.inc.php:169 msgid "Import defaults" msgstr "匯入選項" -#: libraries/config/messages.inc.php:172 +#: libraries/config/messages.inc.php:170 msgid "Customize default common import options" msgstr "自訂匯入選項的預設值" -#: libraries/config/messages.inc.php:173 +#: libraries/config/messages.inc.php:171 msgid "Import / export" msgstr "匯入 / 匯出" -#: libraries/config/messages.inc.php:174 +#: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" msgstr "設定匯入和匯出資料夾以及壓縮選項" -#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27 +#: libraries/config/messages.inc.php:173 libraries/export/latex.php:27 msgid "LaTeX" msgstr "LaTeX" -#: libraries/config/messages.inc.php:178 +#: libraries/config/messages.inc.php:176 msgid "Databases display options" msgstr "資料庫顯示選項" -#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18 +#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" msgstr "導覽框架" -#: libraries/config/messages.inc.php:180 +#: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" msgstr "自訂導覽框架" -#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:35 +#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:35 #: setup/frames/index.inc.php:111 msgid "Servers" msgstr "伺服器" -#: libraries/config/messages.inc.php:182 +#: libraries/config/messages.inc.php:180 msgid "Servers display options" msgstr "伺服器顯示選項" -#: libraries/config/messages.inc.php:184 +#: libraries/config/messages.inc.php:182 msgid "Tables display options" msgstr "資料表顯示選項" -#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19 +#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" msgstr "主框架" -#: libraries/config/messages.inc.php:186 +#: libraries/config/messages.inc.php:184 msgid "Microsoft Office" msgstr "微軟 Office" -#: libraries/config/messages.inc.php:188 +#: libraries/config/messages.inc.php:186 msgid "Open Document" msgstr "開啟檔案" -#: libraries/config/messages.inc.php:190 +#: libraries/config/messages.inc.php:188 msgid "Other core settings" msgstr "其他核心設定" -#: libraries/config/messages.inc.php:191 +#: libraries/config/messages.inc.php:189 msgid "Settings that didn't fit enywhere else" msgstr "其他設定" -#: libraries/config/messages.inc.php:192 +#: libraries/config/messages.inc.php:190 msgid "Page titles" msgstr "頁面標題" -#: libraries/config/messages.inc.php:193 +#: libraries/config/messages.inc.php:191 msgid "" "Specify browser's title bar text. Refer to [a@Documentation." "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " @@ -3784,58 +3772,58 @@ msgstr "" "設定瀏覽器標題欄所顯示的文字。參見[a@Documentation.html#cfg_TitleTable]檔案[/" "a]中關於可以取得特殊值的魔術字元串" -#: libraries/config/messages.inc.php:194 +#: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:79 #: libraries/navigation_header.inc.php:82 #: libraries/navigation_header.inc.php:85 msgid "Query window" msgstr "查詢視窗" -#: libraries/config/messages.inc.php:195 +#: libraries/config/messages.inc.php:193 msgid "Customize query window options" msgstr "自訂查詢視窗選項" -#: libraries/config/messages.inc.php:196 +#: libraries/config/messages.inc.php:194 msgid "Security" msgstr "安全" -#: libraries/config/messages.inc.php:197 +#: libraries/config/messages.inc.php:195 msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" msgstr "注意:phpMyAdmin 只是一個使用者接口,其功能不會對 MySQL 有限制" -#: libraries/config/messages.inc.php:198 +#: libraries/config/messages.inc.php:196 msgid "Basic settings" msgstr "基本設定" -#: libraries/config/messages.inc.php:199 +#: libraries/config/messages.inc.php:197 msgid "Authentication" msgstr "認證" -#: libraries/config/messages.inc.php:200 +#: libraries/config/messages.inc.php:198 msgid "Authentication settings" msgstr "認證設定" -#: libraries/config/messages.inc.php:201 +#: libraries/config/messages.inc.php:199 msgid "Server configuration" msgstr "伺服器設定" -#: libraries/config/messages.inc.php:202 +#: libraries/config/messages.inc.php:200 msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" msgstr "進階伺服器設定,如果您不知道這些是什麼,請不要修改" -#: libraries/config/messages.inc.php:203 +#: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" msgstr "伺服器連線參數" -#: libraries/config/messages.inc.php:204 +#: libraries/config/messages.inc.php:202 msgid "Configuration storage" msgstr "進階功能" -#: libraries/config/messages.inc.php:205 +#: libraries/config/messages.inc.php:203 msgid "" "Configure phpMyAdmin configuration storage to gain access to additional " "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " @@ -3844,54 +3832,54 @@ msgstr "" "設定 phpMyAdmin 進階功能,參見檔案[a@Documentation.html#linked-tables]" "phpMyAdmin 進階功能[/a]" -#: libraries/config/messages.inc.php:206 +#: libraries/config/messages.inc.php:204 msgid "Changes tracking" msgstr "修改追蹤" -#: libraries/config/messages.inc.php:207 +#: libraries/config/messages.inc.php:205 msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." msgstr "追蹤資料庫的修改。需要 phpMyAdmin 進階功能" -#: libraries/config/messages.inc.php:208 +#: libraries/config/messages.inc.php:206 msgid "Customize export options" msgstr "自定輸出選項" -#: libraries/config/messages.inc.php:210 +#: libraries/config/messages.inc.php:208 msgid "Customize import defaults" msgstr "自訂匯入選項" -#: libraries/config/messages.inc.php:211 +#: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" msgstr "自訂導覽框架" -#: libraries/config/messages.inc.php:212 +#: libraries/config/messages.inc.php:210 msgid "Customize main frame" msgstr "自訂主框架" -#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218 +#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" msgstr "SQL 查詢" -#: libraries/config/messages.inc.php:215 +#: libraries/config/messages.inc.php:213 msgid "SQL Query box" msgstr "SQL 語法輸入框" -#: libraries/config/messages.inc.php:216 +#: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" msgstr "自訂顯示在 SQL 查詢框中的連結" -#: libraries/config/messages.inc.php:219 +#: libraries/config/messages.inc.php:217 msgid "SQL queries settings" msgstr "SQL 語法設定" -#: libraries/config/messages.inc.php:220 +#: libraries/config/messages.inc.php:218 msgid "SQL Validator" msgstr "SQL 檢驗器" -#: libraries/config/messages.inc.php:221 +#: libraries/config/messages.inc.php:219 msgid "" "If you wish to use the SQL Validator service, you should be aware that " "[strong]all SQL statements are stored anonymously for statistical purposes[/" @@ -3902,58 +3890,58 @@ msgstr "" "[/strong]。[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL 檢驗器[/a],版" "權所有 2002 Upright Database Technology. 保留所有權利。[/em]" -#: libraries/config/messages.inc.php:222 +#: libraries/config/messages.inc.php:220 msgid "Startup" msgstr "起始頁" -#: libraries/config/messages.inc.php:223 +#: libraries/config/messages.inc.php:221 msgid "Customize startup page" msgstr "自訂起始頁" -#: libraries/config/messages.inc.php:224 +#: libraries/config/messages.inc.php:222 msgid "Tabs" msgstr "頁籤" -#: libraries/config/messages.inc.php:225 +#: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" msgstr "選擇您想讓標籤怎樣工作" -#: libraries/config/messages.inc.php:226 +#: libraries/config/messages.inc.php:224 msgid "Text fields" msgstr "文字欄位" -#: libraries/config/messages.inc.php:227 +#: libraries/config/messages.inc.php:225 msgid "Customize text input fields" msgstr "自定文字輸入框" -#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18 +#: libraries/config/messages.inc.php:226 libraries/export/texytext.php:18 msgid "Texy! text" msgstr "Texy! 文字" -#: libraries/config/messages.inc.php:230 +#: libraries/config/messages.inc.php:228 msgid "Warnings" msgstr "警告" -#: libraries/config/messages.inc.php:231 +#: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" msgstr "禁止部分 phpMyAdmin 發出的警告" -#: libraries/config/messages.inc.php:232 +#: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" "允許在匯入和匯出時使用 [a@http://en.wikipedia.org/wiki/Gzip]gzip [/a] 壓縮" -#: libraries/config/messages.inc.php:233 +#: libraries/config/messages.inc.php:231 msgid "GZip" msgstr "GZip" -#: libraries/config/messages.inc.php:234 +#: libraries/config/messages.inc.php:232 msgid "Extra parameters for iconv" msgstr "iconv 的額外參數" -#: libraries/config/messages.inc.php:235 +#: libraries/config/messages.inc.php:233 msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" @@ -3961,11 +3949,11 @@ msgstr "" "如果開啟此選項,在執行多指令查詢的時候,即使有一條或多條指令發生錯誤," "phpMyAdmin 也會繼續執行其他的指令" -#: libraries/config/messages.inc.php:236 +#: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" msgstr "忽略多個指令錯誤" -#: libraries/config/messages.inc.php:237 +#: libraries/config/messages.inc.php:235 msgid "" "Allow interrupt of import in case script detects it is close to time limit. " "This might be good way to import large files, however it can break " @@ -3974,192 +3962,192 @@ msgstr "" "該功能作用於在匯入時指令檢測到可能需要花費很長時間。儘管這會中斷交易,但在導" "入大檔案時是個很好的方法" -#: libraries/config/messages.inc.php:238 +#: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" msgstr "部分匯入:允許中斷" -#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250 +#: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:27 libraries/import/ldi.php:40 msgid "Do not abort on INSERT error" msgstr "不在發生插入錯誤時中斷" -#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252 +#: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Replace table data with file" msgstr "將表的資料用此檔案替換" -#: libraries/config/messages.inc.php:246 +#: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" "預設格式,此列表根據位置(資料庫或資料表)不同將有所改變,只有 SQL 總是可用的" -#: libraries/config/messages.inc.php:247 +#: libraries/config/messages.inc.php:245 msgid "Format of imported file" msgstr "匯入檔案的格式" -#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46 +#: libraries/config/messages.inc.php:249 libraries/import/ldi.php:46 msgid "Use LOCAL keyword" msgstr "使用本地(LOCAL)關鍵字" -#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262 -#: libraries/config/messages.inc.php:263 +#: libraries/config/messages.inc.php:252 libraries/config/messages.inc.php:260 +#: libraries/config/messages.inc.php:261 msgid "Column names in first row" msgstr "首行資料為欄位名稱" -#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27 +#: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" msgstr "不匯入空行" -#: libraries/config/messages.inc.php:256 +#: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" msgstr "匯入貨幣 ($5.00 將被匯入爲 5.00)" -#: libraries/config/messages.inc.php:257 +#: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "匯入百分數爲小數 (12.00% 將被匯入爲 .12)" -#: libraries/config/messages.inc.php:258 +#: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" msgstr "略過指定行數的資料" -#: libraries/config/messages.inc.php:259 +#: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" msgstr "部分匯入:跳過查詢" -#: libraries/config/messages.inc.php:261 +#: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "請勿為數值為零的資料加上 AUTO_INCREMENT 屬性" -#: libraries/config/messages.inc.php:264 +#: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" msgstr "滑塊原始狀態" -#: libraries/config/messages.inc.php:265 +#: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" msgstr "一次可以插入的行數" -#: libraries/config/messages.inc.php:266 +#: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" msgstr "插入的行數" -#: libraries/config/messages.inc.php:267 +#: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" msgstr "快速訪問圖示的目標" -#: libraries/config/messages.inc.php:268 +#: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" msgstr "在左側框架中顯示 logo" -#: libraries/config/messages.inc.php:269 +#: libraries/config/messages.inc.php:267 msgid "Display logo" msgstr "顯示 logo" -#: libraries/config/messages.inc.php:270 +#: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" msgstr "在左側框架頂部顯示伺服器選擇" -#: libraries/config/messages.inc.php:271 +#: libraries/config/messages.inc.php:269 msgid "Display servers selection" msgstr "顯示伺服器選擇" -#: libraries/config/messages.inc.php:272 +#: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" msgstr "顯示過濾框的最少資料表數量" -#: libraries/config/messages.inc.php:273 +#: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" msgstr "將資料庫分爲不同樹的分隔字元串" -#: libraries/config/messages.inc.php:274 +#: libraries/config/messages.inc.php:272 msgid "Database tree separator" msgstr "樹狀資料庫分隔符號" -#: libraries/config/messages.inc.php:275 +#: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" msgstr "只使用輕量級版本,以樹形顯示資料庫 (以下面的樹形分隔符號來顯示)" -#: libraries/config/messages.inc.php:276 +#: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" msgstr "以樹形顯示資料庫" -#: libraries/config/messages.inc.php:277 +#: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" msgstr "如果想一次性瀏覽所有資料庫,則停用該選項" -#: libraries/config/messages.inc.php:278 +#: libraries/config/messages.inc.php:276 msgid "Use light version" msgstr "使用輕量級版本" -#: libraries/config/messages.inc.php:279 +#: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" msgstr "資料表樹最大深度" -#: libraries/config/messages.inc.php:280 +#: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" msgstr "將表分爲不同樹的分隔符號" -#: libraries/config/messages.inc.php:281 +#: libraries/config/messages.inc.php:279 msgid "Table tree separator" msgstr "樹形表分隔符號" -#: libraries/config/messages.inc.php:282 +#: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" msgstr "導覽框架中 logo 的網址" -#: libraries/config/messages.inc.php:283 +#: libraries/config/messages.inc.php:281 msgid "Logo link URL" msgstr "Logo 連結網址" -#: libraries/config/messages.inc.php:284 +#: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" msgstr "在主視窗 ([kbd]main[/kbd]) 或新視窗 ([kbd]new[/kbd]) 開啟目標頁面" -#: libraries/config/messages.inc.php:285 +#: libraries/config/messages.inc.php:283 msgid "Logo link target" msgstr "Logo 連結目標" -#: libraries/config/messages.inc.php:286 +#: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" msgstr "醒目提示顯示鼠標所在位置的伺服器" -#: libraries/config/messages.inc.php:287 +#: libraries/config/messages.inc.php:285 msgid "Enable highlighting" msgstr "啓用醒目提示" -#: libraries/config/messages.inc.php:288 +#: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" msgstr "" -#: libraries/config/messages.inc.php:289 +#: libraries/config/messages.inc.php:287 #, fuzzy #| msgid "Untracked tables" msgid "Recently used tables" msgstr "未追蹤的資料表" -#: libraries/config/messages.inc.php:290 +#: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" msgstr "不在標簽上使用背景" -#: libraries/config/messages.inc.php:291 +#: libraries/config/messages.inc.php:289 msgid "Light tabs" msgstr "簡化標籤" -#: libraries/config/messages.inc.php:292 +#: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" msgstr "瀏覽非數字欄位時所顯示的最大字元數" -#: libraries/config/messages.inc.php:293 +#: libraries/config/messages.inc.php:291 msgid "Limit column characters" msgstr "限制欄位字元數" -#: libraries/config/messages.inc.php:294 +#: libraries/config/messages.inc.php:292 msgid "" "If TRUE, logout deletes cookies for all servers; when set to FALSE, logout " "only occurs for the current server. Setting this to FALSE makes it easy to " @@ -4168,21 +4156,21 @@ msgstr "" "如果設爲 TRUE,在登出時將會刪除所有伺服器的 Cookies。如果設爲 FALSE,在您登錄" "多臺伺服器的時候,容易忘記登出登錄" -#: libraries/config/messages.inc.php:295 +#: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" msgstr "登出時刪除所有 cookies" -#: libraries/config/messages.inc.php:296 +#: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" msgstr "定義在 cookie 認證方式中是否顯示上次登錄的帳號" -#: libraries/config/messages.inc.php:297 +#: libraries/config/messages.inc.php:295 msgid "Recall user name" msgstr "顯示上次登錄的帳號" -#: libraries/config/messages.inc.php:298 +#: libraries/config/messages.inc.php:296 msgid "" "Defines how long (in seconds) a login cookie should be stored in browser. " "The default of 0 means that it will be kept for the existing session only, " @@ -4193,52 +4181,52 @@ msgstr "" "爲瀏覽器程序,在關閉瀏覽器之後 Cookies 就會被刪除。預設值爲0。在不安全的環境" "下建議使用預設值" -#: libraries/config/messages.inc.php:299 +#: libraries/config/messages.inc.php:297 msgid "Login cookie store" msgstr "登錄 cookie 儲存" -#: libraries/config/messages.inc.php:300 +#: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" msgstr "定義登錄 cookie 的有效期 (單位:秒)" -#: libraries/config/messages.inc.php:301 +#: libraries/config/messages.inc.php:299 msgid "Login cookie validity" msgstr "登錄 cookie 有效期" -#: libraries/config/messages.inc.php:302 +#: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" msgstr "放大一倍 LONGTEXT 欄位的輸入框" -#: libraries/config/messages.inc.php:303 +#: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" msgstr "放大 LONGTEXT 欄位的輸入框" -#: libraries/config/messages.inc.php:304 +#: libraries/config/messages.inc.php:302 msgid "Use icons on main page" msgstr "在首頁上使用圖示" -#: libraries/config/messages.inc.php:305 +#: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" msgstr "顯示 SQL 指令時可以使用的最多字元數" -#: libraries/config/messages.inc.php:306 +#: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" msgstr "顯示 SQL 指令的最大長度" -#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312 -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "使用者不能設定更大的值" -#: libraries/config/messages.inc.php:308 +#: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" msgstr "在左欄和資料庫列資料表中最多顯示的資料庫個數" -#: libraries/config/messages.inc.php:309 +#: libraries/config/messages.inc.php:307 msgid "Maximum databases" msgstr "最大資料庫數量" -#: libraries/config/messages.inc.php:310 +#: libraries/config/messages.inc.php:308 msgid "" "Number of rows displayed when browsing a result set. If the result set " "contains more rows, "Previous" and "Next" links will be " @@ -4247,73 +4235,73 @@ msgstr "" "瀏覽一個結果集時一次顯示的最多行數。如果結果集超過此值,將會顯示 "上一頁" "" 和 "下一頁" 的連結" -#: libraries/config/messages.inc.php:311 +#: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" msgstr "顯示的最多行數" -#: libraries/config/messages.inc.php:313 +#: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" msgstr "在資料表列資料表中最多顯示的資料表個數" -#: libraries/config/messages.inc.php:314 +#: libraries/config/messages.inc.php:312 msgid "Maximum tables" msgstr "最大資料表數量" -#: libraries/config/messages.inc.php:315 +#: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" msgstr "禁止顯示在使用 cookie 認證時缺少 mcrypt 的預設警告" -#: libraries/config/messages.inc.php:316 +#: libraries/config/messages.inc.php:314 msgid "mcrypt warning" msgstr "mcrypt 警告" -#: libraries/config/messages.inc.php:317 +#: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" msgstr "一個指令可分配到的記憶體大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]爲不限制)" -#: libraries/config/messages.inc.php:318 +#: libraries/config/messages.inc.php:316 msgid "Memory limit" msgstr "內存限制" -#: libraries/config/messages.inc.php:319 +#: libraries/config/messages.inc.php:317 #, fuzzy #| msgid "These are Edit, Inline edit, Copy and Delete links" msgid "These are Edit, Copy and Delete links" msgstr "它們是編輯、快速編輯、複製和刪除連結" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:318 msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "爲資料庫和資料資料表名稱使用自然排序" -#: libraries/config/messages.inc.php:322 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "自然排序" -#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "僅使用圖示、文字或都使用" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "導覽列使用圖示" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "使用 GZip 輸出快取以加快 HTTP 傳輸速度" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip 輸出快取" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -4321,42 +4309,42 @@ msgstr "" "[kbd]SMART[/kbd] - 如:對 TIME、DATE、DATETIME 和 TIMESTAMP 類型的欄位遞減排" "序,其他欄位遞增" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "預設排序" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "在連線到 MySQL 資料庫時使用持續連線" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "持續連線" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "禁止在缺少 phpMyAdmin 進階功能所需資料表時在資料庫結構頁中顯示預設警告" -#: libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "丟失 phpMyAdmin 進階功能資料表" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "資料表操作顯示" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "禁止編輯 BLOB 和 BINARY 類型欄位" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "保護二進制欄位" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -4365,121 +4353,121 @@ msgstr "" "允許使用基於資料庫的查詢歷史 (需要 phpMyAdmin 進階功能)。如果停用,將使用 " "JS 程序來顯示查詢歷史 (關閉視窗即丟失)" -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "持續查詢歷史" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "記錄查詢歷史的數量" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "查詢歷史個數" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "開啟一個新查詢視窗時預設顯示的頁面" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "預設查詢視窗標籤" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "查詢視窗高度 (單位:像素)" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "查詢窗口高度" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "查詢窗口寬度 (單位:像素)" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "查詢窗口寬度" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "選擇進行字集轉換時使用的函數" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "記錄引擎" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "將資料表改名為" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "每 X 單元格重複表頭,要禁止此功能請設爲 [kbd]0[/kbd]" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "重複表頭" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "顯示幫助按鈕代替檔案文字" -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "顯示幫助按鈕" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:355 msgid "Save all edited cells at once" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:356 msgid "Directory where exports can be saved on server" msgstr "伺服器上用來儲存匯出檔案的資料夾" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:357 msgid "Save directory" msgstr "保存文件夾" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:358 msgid "Leave blank if not used" msgstr "不使用請留空" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:359 msgid "Host authorization order" msgstr "主機認證模式" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:360 msgid "Leave blank for defaults" msgstr "預設請留空" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:361 msgid "Host authorization rules" msgstr "主機認證規則" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:362 msgid "Allow logins without a password" msgstr "允許空密碼登錄" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:363 msgid "Allow root login" msgstr "允許 root 使用者登錄" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:364 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "使用 HTTP 基本認證時顯示給使用者的提示資訊" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:365 msgid "HTTP Realm" msgstr "HTTP 提示資訊" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -4488,19 +4476,19 @@ msgstr "" "[a@http://swekey.com]SweKey 硬件認證 [/a]的設定檔案路徑 (請勿置於您的檔案根資" "料夾,推薦使用:/etc/swekey.conf)" -#: libraries/config/messages.inc.php:369 +#: libraries/config/messages.inc.php:367 msgid "SweKey config file" msgstr "SweKey 設定檔案" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" msgstr "要使用的認證方式" -#: libraries/config/messages.inc.php:371 setup/frames/index.inc.php:127 +#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:127 msgid "Authentication type" msgstr "認證方式" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:370 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4508,41 +4496,41 @@ msgstr "" "不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤 [/a]功能請留空,預設:" "[kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:371 msgid "Bookmark table" msgstr "書籤表" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "留空則不使用列資訊和MIME類型。預設值:[kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:373 msgid "Column information table" msgstr "列資訊表" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:374 msgid "Compress connection to MySQL server" msgstr "壓縮連線到 MySQL 伺服器" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:375 msgid "Compress connection" msgstr "壓縮連線" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:376 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "怎樣連線到伺服器,如果不確定,請選擇 tcp" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:377 msgid "Connection type" msgstr "連接方式" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:378 msgid "Control user password" msgstr "控制使用者的密碼" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4550,29 +4538,29 @@ msgstr "" "一個特殊的被限制權限的 MySQL 使用者,參見 [a@http://wiki.phpmyadmin.net/pma/" "controluser]wiki [/a]" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:380 msgid "Control user" msgstr "控制使用者" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:381 msgid "Count tables when showing database list" msgstr "顯示資料庫列表時計算資料表的數量" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:382 msgid "Count tables" msgstr "統計資料表" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:383 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "不使用設計功能請留空,預設:[kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:384 msgid "Designer table" msgstr "設計表" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:385 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]" @@ -4580,69 +4568,69 @@ msgstr "" "參見 [a@http://sf.net/support/tracker.php?aid=1849494]PMA 缺陷 (bug) 跟蹤係" "統 [/a] 和 [a@http://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外鏈,英文)[/a]" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:386 msgid "Disable use of INFORMATION_SCHEMA" msgstr "禁止使用 INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:387 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "要使用的 PHP 外掛,如果支援,推薦使用 mysqli" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:388 msgid "PHP extension to use" msgstr "要使用的 PHP 外掛" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:389 msgid "Hide databases matching regular expression (PCRE)" msgstr "該正則表達式 (PCRE,Perl 相容) 所符合的資料庫將被隱藏" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:390 msgid "Hide databases" msgstr "隱藏資料庫" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:391 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "不使用 SQL 查詢歷史功能請留空,預設:[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:392 msgid "SQL query history table" msgstr "SQL 查詢歷史表" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:393 msgid "Hostname where MySQL server is running" msgstr "MySQL 伺服器的主機名" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:394 msgid "Server hostname" msgstr "伺服器主機名" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:395 msgid "Logout URL" msgstr "登出網址" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:396 msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "在資料表列資料表中最多顯示的資料表個數" -#: libraries/config/messages.inc.php:400 +#: libraries/config/messages.inc.php:398 msgid "Try to connect without password" msgstr "嘗試用空密碼連線" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:399 msgid "Connect without password" msgstr "用空密碼連線" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:400 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4654,28 +4642,28 @@ msgstr "" "\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。透過該選項您可以對資料庫列表排序,只" "需按順序輸入它們的名稱並加上 [kbd]*[/kbd],剩下的資料庫將按字母順序排在最後" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:401 msgid "Show only listed databases" msgstr "僅顯示列出的資料庫" -#: libraries/config/messages.inc.php:404 libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:402 libraries/config/messages.inc.php:443 msgid "Leave empty if not using config auth" msgstr "如果不使用 config 認證方式,請留空" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:403 msgid "Password for config auth" msgstr "config 認證方式的密碼" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:404 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:405 msgid "PDF schema: pages table" msgstr "PDF 大綱: 資料表頁" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:406 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4684,31 +4672,31 @@ msgstr "" "關聯、書籤、PDF 功能所用的資料庫。參見 [a@http://wiki.phpmyadmin.net/pma/" "pmadb]pmadb [/a]。不使用請留空。預設: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:407 msgid "Database name" msgstr "資料庫名" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:408 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "MySQL 伺服器監聽的連接埠,留空爲預設" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:409 msgid "Server port" msgstr "伺服器端口" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:411 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "分析資料表" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:412 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4716,139 +4704,139 @@ msgstr "" "不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 [/a]功能請留空,預" "設:[kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:413 msgid "Relation table" msgstr "關係表" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:414 msgid "SQL command to fetch available databases" msgstr "取得所有可用資料庫的 SQL 指令" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:415 msgid "SHOW DATABASES command" msgstr "顯示資料庫(SHOW DATABASES)命令" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:416 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" "參見[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認證方式 [/a]中的例子" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:417 msgid "Signon session name" msgstr "Signon 連線名" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:418 msgid "Signon URL" msgstr "登錄網址" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:419 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL 伺服器監聽的連線埠,留空爲預設" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:420 msgid "Server socket" msgstr "伺服器套接字 (socket)" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:421 msgid "Enable SSL for connection to MySQL server" msgstr "使用 SSL 連線到 MySQL 伺服器" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:422 msgid "Use SSL" msgstr "使用 SSL" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:423 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:424 msgid "PDF schema: table coordinates" msgstr "PDF 大綱: 資料表同時" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:425 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "描述顯示欄位的表,不使用請留空,預設:[kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:426 msgid "Display columns table" msgstr "顯示字段表" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:427 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:428 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "整理資料表" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "設定當記錄資料庫建立時,是否在前面加上 DROP DATABASE IF EXISTS 命令" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:430 msgid "Add DROP DATABASE" msgstr "新增 DROP DATABASE" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "設定當記錄資料表建立時,是否在前面加上 DROP TABLE IF EXISTS 命令" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:432 msgid "Add DROP TABLE" msgstr "新增 DROP TABLE" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:433 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "設定當記錄 view建立時,是否在前面加上 DROP VIEW IF EXISTS 命令" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:434 msgid "Add DROP VIEW" msgstr "新增 DROP VIEW" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:435 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "定義自動建立新版的命令列表" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:436 msgid "Statements to track" msgstr "要追蹤的命令" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:437 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "不使用 SQL 查詢追蹤功能請留空,預設:[kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:438 msgid "SQL query tracking table" msgstr "SQL 查詢追蹤表" -#: libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:439 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "設定追蹤系統是否自動爲資料表和 view建立版本" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:440 msgid "Automatically create versions" msgstr "自動建立版本" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:441 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4858,43 +4846,43 @@ msgid "" "pma_userconfig[/kbd]" msgstr "不在資料庫中儲存使用者偏好請留空,預設:[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:442 msgid "User preferences storage table" msgstr "使用者偏好表" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:444 msgid "User for config auth" msgstr "config 認證方式的帳號" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:445 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "如果您確定 pma_* 資料表都是最新的,可以停用此項。此功能提供相容性檢查" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:446 msgid "Verbose check" msgstr "詳細檢查" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:447 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "一個好記的名字。留空將顯示主機名" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:448 msgid "Verbose name of this server" msgstr "伺服器名稱" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:449 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "設定是否給使用者顯示一個 "顯示所有 (記錄)" 的按鈕" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:450 msgid "Allow to display all the rows" msgstr "允許顯示所有行" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:451 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4903,97 +4891,97 @@ msgstr "" "注意:該選項不影響 [kbd]config[/kbd] 認證方式,因爲密碼是儲存在設定檔案中,該" "選項也不限制直接執行可實現相同功能的命令" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:452 msgid "Show password change form" msgstr "顯示修改密碼" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:453 msgid "Show create database form" msgstr "顯示建立資料庫表單" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:454 msgid "" "Defines whether or not type display direction option is shown when browsing " "a table" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:455 #, fuzzy #| msgid "Default display direction" msgid "Show display direction" msgstr "預設顯示模式" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:456 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "定義在編輯/插入模式中是否顯示欄位類型一列" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:457 msgid "Show field types" msgstr "顯示字段類型" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:458 msgid "Display the function fields in edit/insert mode" msgstr "在編輯/插入模式中顯示函數列" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:459 msgid "Show function fields" msgstr "顯示函數列" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:460 msgid "Whether to show hint or not" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:461 #, fuzzy #| msgid "Show grid" msgid "Show hint" msgstr "顯示網格" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:462 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" "顯示 [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] 輸出的連結" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:463 msgid "Show phpinfo() link" msgstr "顯示 phpinfo() 連結" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:464 msgid "Show detailed MySQL server information" msgstr "顯示 MySQL 伺服器詳細資訊" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:465 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "定義是否顯示 phpMyAdmin 產生的 SQL 查詢" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:466 msgid "Show SQL queries" msgstr "顯示 SQL 查詢" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:467 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "允許顯示資料庫和資料表的統計資訊 (如:空間使用)" -#: libraries/config/messages.inc.php:470 +#: libraries/config/messages.inc.php:468 msgid "Show statistics" msgstr "顯示統計" -#: libraries/config/messages.inc.php:471 +#: libraries/config/messages.inc.php:469 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" "如果啓用了提示功能且設定了資料庫備註,這裏將簡略顯示資料庫備註和資料庫名" -#: libraries/config/messages.inc.php:472 +#: libraries/config/messages.inc.php:470 msgid "Display database comment instead of its name" msgstr "顯示資料庫的備註而不顯示資料庫名" -#: libraries/config/messages.inc.php:473 +#: libraries/config/messages.inc.php:471 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -5004,28 +4992,28 @@ msgstr "" "['LeftFrameTableSeparator'] 作分割/層疊用,所有只有目錄的名字像別名,資料表自" "己的名字並不改變" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:472 msgid "Display table comment instead of its name" msgstr "顯示資料表備註而不顯示資料資料表名稱" -#: libraries/config/messages.inc.php:475 +#: libraries/config/messages.inc.php:473 msgid "Display table comments in tooltips" msgstr "在提示視窗顯示資料表備註" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:474 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "將已鎖定的資料表在資料庫中顯示爲使用中" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:475 msgid "Skip locked tables" msgstr "跳過鎖定的表" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:480 msgid "Requires SQL Validator to be enabled" msgstr "需要啓用 SQL 檢驗器" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:482 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 @@ -5035,46 +5023,46 @@ msgstr "需要啓用 SQL 檢驗器" msgid "Password" msgstr "密碼" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:483 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "[strong]警告:[/strong]需要安裝 PHP SOAP 外掛或 PEAR SOAP" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:484 msgid "Enable SQL Validator" msgstr "啓用 SQL 檢驗器" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:485 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "如果您有自己的帳號,請在這裏輸入 (預設爲 [kbd]anonymous (匿名)[/kbd])" -#: libraries/config/messages.inc.php:488 tbl_tracking.php:445 +#: libraries/config/messages.inc.php:486 tbl_tracking.php:445 #: tbl_tracking.php:502 msgid "Username" msgstr "使用者名" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:487 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "如果可能,在 "建立資料庫" 表單中建議一個名字,或留空" -#: libraries/config/messages.inc.php:490 +#: libraries/config/messages.inc.php:488 msgid "Suggest new database name" msgstr "建議新資料庫名" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:489 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "若檢測到 Suhosin 將在首頁顯示一個警告" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:490 msgid "Suhosin warning" msgstr "Suhosin 警告" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:491 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5082,11 +5070,11 @@ msgstr "" "編輯模式的文字框大小 (列數),此值將用於 SQL 查詢文字框 (*2) 和查詢視窗 " "(*1.25)" -#: libraries/config/messages.inc.php:494 +#: libraries/config/messages.inc.php:492 msgid "Textarea columns" msgstr "文本框列" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:493 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -5094,31 +5082,31 @@ msgstr "" "編輯模式的文字框大小 (行數),此值將用於 SQL 查詢文字框 (*2) 和查詢視窗 " "(*1.25)" -#: libraries/config/messages.inc.php:496 +#: libraries/config/messages.inc.php:494 msgid "Textarea rows" msgstr "文字框行" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:495 msgid "Title of browser window when a database is selected" msgstr "選中一個資料庫時瀏覽器視窗的標題" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:497 msgid "Title of browser window when nothing is selected" msgstr "未選擇時瀏覽器視窗的標題" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:498 msgid "Default title" msgstr "默認標題" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:499 msgid "Title of browser window when a server is selected" msgstr "選中一個伺服器時瀏覽器視窗的標題" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:501 msgid "Title of browser window when a table is selected" msgstr "選中一張資料表時瀏覽器視窗的標題" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:503 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -5129,37 +5117,37 @@ msgstr "" "信任從代理 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd] 發來的 " "HTTP_X_FORWARDED_FOR 頭" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:504 msgid "List of trusted proxies for IP allow/deny" msgstr "可信代理IP列表" -#: libraries/config/messages.inc.php:507 +#: libraries/config/messages.inc.php:505 msgid "Directory on server where you can upload files for import" msgstr "伺服器上用來存放匯入檔案的資料夾" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:506 msgid "Upload directory" msgstr "上傳資料夾" -#: libraries/config/messages.inc.php:509 +#: libraries/config/messages.inc.php:507 msgid "Allow for searching inside the entire database" msgstr "允許搜尋整個資料庫" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:508 msgid "Use database search" msgstr "使用資料庫搜尋" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:509 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "停用時,使用者不能設定下列選項,右側的複選框被忽略" -#: libraries/config/messages.inc.php:512 +#: libraries/config/messages.inc.php:510 msgid "Enable the Developer tab in settings" msgstr "啓用設定中的開發標籤" -#: libraries/config/messages.inc.php:513 +#: libraries/config/messages.inc.php:511 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -5168,19 +5156,19 @@ msgstr "" "在進行多個指令查詢時,顯示每個指令所影響的行數。預設一次查詢可以包含的查詢語" "句數可以在 libraries/import.lib.php 中找到" -#: libraries/config/messages.inc.php:514 +#: libraries/config/messages.inc.php:512 msgid "Verbose multiple statements" msgstr "爲多個指令輸出更多資訊" -#: libraries/config/messages.inc.php:515 setup/frames/index.inc.php:242 +#: libraries/config/messages.inc.php:513 setup/frames/index.inc.php:242 msgid "Check for latest version" msgstr "檢查更新" -#: libraries/config/messages.inc.php:516 +#: libraries/config/messages.inc.php:514 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "允許在 phpMyAdmin 首頁面中檢查最新版本" -#: libraries/config/messages.inc.php:517 setup/lib/index.lib.php:121 +#: libraries/config/messages.inc.php:515 setup/lib/index.lib.php:121 #: setup/lib/index.lib.php:131 setup/lib/index.lib.php:151 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:172 #: setup/lib/index.lib.php:179 setup/lib/index.lib.php:185 @@ -5188,7 +5176,7 @@ msgstr "允許在 phpMyAdmin 首頁面中檢查最新版本" msgid "Version check" msgstr "檢查更新" -#: libraries/config/messages.inc.php:518 +#: libraries/config/messages.inc.php:516 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -5196,7 +5184,7 @@ msgstr "" "允許在匯入和匯出時使用 [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP " "[/a] 壓縮" -#: libraries/config/messages.inc.php:519 +#: libraries/config/messages.inc.php:517 msgid "ZIP" msgstr "ZIP" @@ -5216,47 +5204,47 @@ msgstr "HTTP 認證" msgid "Signon authentication" msgstr "Signon 認證" -#: libraries/config/setup.forms.php:248 -#: libraries/config/user_preferences.forms.php:149 libraries/import/ldi.php:35 +#: libraries/config/setup.forms.php:247 +#: libraries/config/user_preferences.forms.php:148 libraries/import/ldi.php:35 msgid "CSV using LOAD DATA" msgstr "CSV 使用 LOAD DATA" -#: libraries/config/setup.forms.php:257 libraries/config/setup.forms.php:350 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:249 libraries/export/ods.php:18 +#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:248 libraries/export/ods.php:18 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "OpenOffice 表格" -#: libraries/config/setup.forms.php:264 -#: libraries/config/user_preferences.forms.php:164 +#: libraries/config/setup.forms.php:263 +#: libraries/config/user_preferences.forms.php:163 msgid "Quick" msgstr "快速" -#: libraries/config/setup.forms.php:268 -#: libraries/config/user_preferences.forms.php:168 +#: libraries/config/setup.forms.php:267 +#: libraries/config/user_preferences.forms.php:167 msgid "Custom" msgstr "自訂" -#: libraries/config/setup.forms.php:289 -#: libraries/config/user_preferences.forms.php:188 +#: libraries/config/setup.forms.php:288 +#: libraries/config/user_preferences.forms.php:187 msgid "Database export options" msgstr "資料庫匯出選項" -#: libraries/config/setup.forms.php:322 -#: libraries/config/user_preferences.forms.php:221 +#: libraries/config/setup.forms.php:321 +#: libraries/config/user_preferences.forms.php:220 #: libraries/export/excel.php:18 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" -#: libraries/config/setup.forms.php:345 -#: libraries/config/user_preferences.forms.php:244 +#: libraries/config/setup.forms.php:344 +#: libraries/config/user_preferences.forms.php:243 #: libraries/export/htmlword.php:18 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:354 -#: libraries/config/user_preferences.forms.php:253 libraries/export/odt.php:22 +#: libraries/config/setup.forms.php:353 +#: libraries/config/user_preferences.forms.php:252 libraries/export/odt.php:22 msgid "Open Document Text" msgstr "OpenOffice 檔案" @@ -5432,9 +5420,8 @@ msgstr "建立資料表" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 #: libraries/rte/rte_routines.lib.php:853 -#: libraries/rte/rte_routines.lib.php:1358 -#: libraries/tbl_properties.inc.php:106 setup/frames/index.inc.php:126 -#: tbl_structure.php:201 +#: libraries/rte/rte_routines.lib.php:1358 libraries/tbl_properties.inc.php:92 +#: setup/frames/index.inc.php:126 tbl_structure.php:201 msgid "Name" msgstr "名字" @@ -5774,7 +5761,7 @@ msgid "Hide" msgstr "隱藏" #: libraries/display_tbl.lib.php:679 libraries/relation.lib.php:116 -#: libraries/tbl_properties.inc.php:150 transformation_overview.php:46 +#: libraries/tbl_properties.inc.php:136 transformation_overview.php:46 msgid "Browser transformation" msgstr "瀏覽器轉換" @@ -6670,7 +6657,7 @@ msgstr "CSV 輸入的第 %d 行欄位數有錯" msgid "DocSQL" msgstr "DocSQL" -#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:578 +#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:564 #: server_synchronize.php:441 server_synchronize.php:913 msgid "Table name" msgstr "資料資料表名稱" @@ -7376,7 +7363,7 @@ msgstr "" msgid "Direction" msgstr "直接連線" -#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:112 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:98 msgid "Length/Values" msgstr "長度/值" @@ -7680,7 +7667,7 @@ msgstr "目錄" #: libraries/schema/Pdf_Relation_Schema.class.php:1307 #: libraries/schema/Pdf_Relation_Schema.class.php:1328 -#: libraries/tbl_properties.inc.php:115 tbl_printview.php:138 +#: libraries/tbl_properties.inc.php:101 tbl_printview.php:138 #: tbl_structure.php:204 msgid "Attributes" msgstr "屬性" @@ -7969,7 +7956,7 @@ msgstr "資料表是空的!" msgid "Tracking of %s.%s is activated." msgstr "%s.%s 的追蹤已啓用" -#: libraries/tbl_properties.inc.php:112 +#: libraries/tbl_properties.inc.php:98 msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " @@ -7979,30 +7966,30 @@ msgstr "" "如欄位類型是“enum”或“set”,請使用以下格式輸入:'a','b','c'...
如果需要輸" "入反斜槓(“\\”)或單引號(“'”),請在前面加上反斜槓(如 '\\\\xyz' 或 'a\\'b')" -#: libraries/tbl_properties.inc.php:113 +#: libraries/tbl_properties.inc.php:99 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "對於預設值,請只輸入單個值,不要加反斜槓或引號,請用此格式:a" -#: libraries/tbl_properties.inc.php:123 libraries/tbl_properties.inc.php:487 +#: libraries/tbl_properties.inc.php:109 libraries/tbl_properties.inc.php:473 #: tbl_printview.php:290 tbl_structure.php:153 tbl_structure.php:158 #: tbl_structure.php:577 tbl_structure.php:779 msgid "Index" msgstr "索引" -#: libraries/tbl_properties.inc.php:143 +#: libraries/tbl_properties.inc.php:129 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "要取得可用轉換選項的列表及對應的 MIME 類型轉換,請點選%s轉換說明%s" -#: libraries/tbl_properties.inc.php:151 +#: libraries/tbl_properties.inc.php:137 msgid "Transformation options" msgstr "轉換選項" -#: libraries/tbl_properties.inc.php:152 +#: libraries/tbl_properties.inc.php:138 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -8012,59 +7999,59 @@ msgstr "" "請使用此格式輸入轉換選項的值:'a',100,b,'c'...
如果您需要在值中輸入反斜" "槓 (“\\”)或單引號(“'”),請在前面加上反斜槓 (如 '\\\\xyz' 或 'a\\'b')" -#: libraries/tbl_properties.inc.php:335 +#: libraries/tbl_properties.inc.php:321 msgid "ENUM or SET data too long?" msgstr "ENUM 或 SET 資料過長?" -#: libraries/tbl_properties.inc.php:337 +#: libraries/tbl_properties.inc.php:323 msgid "Get more editing space" msgstr "取得更多編輯空間" -#: libraries/tbl_properties.inc.php:360 +#: libraries/tbl_properties.inc.php:346 msgctxt "for default" msgid "None" msgstr "無" -#: libraries/tbl_properties.inc.php:361 +#: libraries/tbl_properties.inc.php:347 msgid "As defined:" msgstr "定義:" -#: libraries/tbl_properties.inc.php:475 tbl_structure.php:152 +#: libraries/tbl_properties.inc.php:461 tbl_structure.php:152 #: tbl_structure.php:157 tbl_structure.php:575 msgid "Primary" msgstr "主鍵" -#: libraries/tbl_properties.inc.php:494 tbl_structure.php:156 +#: libraries/tbl_properties.inc.php:480 tbl_structure.php:156 #: tbl_structure.php:161 tbl_structure.php:584 msgid "Fulltext" msgstr "全文搜尋" -#: libraries/tbl_properties.inc.php:544 transformation_overview.php:57 +#: libraries/tbl_properties.inc.php:530 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "此轉換沒有說明。
詳細功能請詢問 %s 的作者" -#: libraries/tbl_properties.inc.php:586 tbl_structure.php:651 +#: libraries/tbl_properties.inc.php:572 tbl_structure.php:651 #, php-format msgid "Add %s column(s)" msgstr "增加 %s 個字段" -#: libraries/tbl_properties.inc.php:588 tbl_structure.php:645 +#: libraries/tbl_properties.inc.php:574 tbl_structure.php:645 msgid "You have to add at least one column." msgstr "至少要增加一個字段。" -#: libraries/tbl_properties.inc.php:697 server_engines.php:54 +#: libraries/tbl_properties.inc.php:662 server_engines.php:54 #: tbl_operations.php:374 msgid "Storage Engine" msgstr "儲存引擎" -#: libraries/tbl_properties.inc.php:726 +#: libraries/tbl_properties.inc.php:691 msgid "PARTITION definition" msgstr "分區定義" -#: libraries/tbl_properties.inc.php:757 +#: libraries/tbl_properties.inc.php:722 #, fuzzy #| msgid "+ Add a new value" msgid "+ Add a value" @@ -12810,6 +12797,16 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " +#~ "maximum number for which vertical model is used" +#~ msgstr "" +#~ "[kbd]horizontal (水平)[/kbd]、[kbd]vertical (垂直)[/kbd] 或限定使用垂直模" +#~ "式的最大數值" + +#~ msgid "Display direction for altering/creating columns" +#~ msgstr "修改/建立欄位時的顯示模式" + #~ msgid "Create table on database %s" #~ msgstr "在資料庫 %s 中建立一張資料表" diff --git a/tbl_create.php b/tbl_create.php index 2810e0d3cb..cdad8bafc3 100644 --- a/tbl_create.php +++ b/tbl_create.php @@ -40,7 +40,7 @@ if (isset($_REQUEST['submit_num_fields'])) { } elseif (isset($_REQUEST['num_fields']) && intval($_REQUEST['num_fields']) > 0) { $num_fields = (int) $_REQUEST['num_fields']; } else { - $num_fields = 2; + $num_fields = 4; } /**